https://jxself.org/git/linux-libre.git
Raw File
Tip revision: df15262b20e5812e81f7168a49deaefab837a8cd authored by Jason Self on 07 March 2014, 06:07:10 UTC
Linux-libre 3.13.6-gnu
Tip revision: df15262
stp.h
#ifndef _NET_STP_H
#define _NET_STP_H

struct stp_proto {
	unsigned char	group_address[ETH_ALEN];
	void		(*rcv)(const struct stp_proto *, struct sk_buff *,
			       struct net_device *);
	void		*data;
};

int stp_proto_register(const struct stp_proto *proto);
void stp_proto_unregister(const struct stp_proto *proto);

#endif /* _NET_STP_H */
back to top