added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / include / net / stp.h
blobad447f105417def47daff3e65f93de65d26f0917
1 #ifndef _NET_STP_H
2 #define _NET_STP_H
4 struct 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 };
11 extern int stp_proto_register(const struct stp_proto *proto);
12 extern void stp_proto_unregister(const struct stp_proto *proto);
14 #endif /* _NET_STP_H */