Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.5-rc1 14 lines 344 B view raw
1#ifndef _NET_STP_H 2#define _NET_STP_H 3 4struct stp_proto { 5 unsigned char group_address[ETH_ALEN]; 6 void (*rcv)(const struct stp_proto *, struct sk_buff *, 7 struct net_device *); 8 void *data; 9}; 10 11int stp_proto_register(const struct stp_proto *proto); 12void stp_proto_unregister(const struct stp_proto *proto); 13 14#endif /* _NET_STP_H */