1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef _NET_STP_H 1 #ifndef _NET_STP_H 3 #define _NET_STP_H 2 #define _NET_STP_H 4 << 5 #include <linux/if_ether.h> << 6 3 7 struct stp_proto { 4 struct stp_proto { 8 unsigned char group_address[ETH_ALEN 5 unsigned char group_address[ETH_ALEN]; 9 void (*rcv)(const struct st 6 void (*rcv)(const struct stp_proto *, struct sk_buff *, 10 struct net_devi 7 struct net_device *); 11 void *data; 8 void *data; 12 }; 9 }; 13 10 14 int stp_proto_register(const struct stp_proto 11 int stp_proto_register(const struct stp_proto *proto); 15 void stp_proto_unregister(const struct stp_pro 12 void stp_proto_unregister(const struct stp_proto *proto); 16 13 17 #endif /* _NET_STP_H */ 14 #endif /* _NET_STP_H */ 18 15
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.