diff options
author | Patrick McHardy <kaber@trash.net> | 2008-07-06 00:25:39 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-06 00:25:39 -0400 |
commit | a19800d704177caaa5874baf5819307c5b7d5e4f (patch) | |
tree | ebe3397dc06ff3544a09f078f512cadb996daaf9 /include/net/stp.h | |
parent | ef28d1a20f9f18ebf1be15ef6f097a76f9a63499 (diff) |
net: Add STP demux layer
Add small STP demux layer for demuxing STP PDUs based on MAC address.
This is needed to run both GARP and STP in parallel (or even load the
modules) since both use LLC_SAP_BSPAN.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/stp.h')
-rw-r--r-- | include/net/stp.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/net/stp.h b/include/net/stp.h new file mode 100644 index 000000000000..ad447f105417 --- /dev/null +++ b/include/net/stp.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #ifndef _NET_STP_H | ||
2 | #define _NET_STP_H | ||
3 | |||
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 | }; | ||
10 | |||
11 | extern int stp_proto_register(const struct stp_proto *proto); | ||
12 | extern void stp_proto_unregister(const struct stp_proto *proto); | ||
13 | |||
14 | #endif /* _NET_STP_H */ | ||