diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-05-25 18:10:37 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-06-18 00:26:08 -0400 |
commit | bc0e646796928918e45b6465e02616f2fe65c3c1 (patch) | |
tree | 8c7a52563188e7e4168cd98b58b980c8096c02ce /include/net/llc_if.h | |
parent | 8f182b494f87799d6ae20a1401825c516da46081 (diff) |
[LLC]: add multicast support for datagrams
Allow mulitcast reception of datagrams (similar to UDP).
All sockets bound to the same SAP receive a clone.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/llc_if.h')
-rw-r--r-- | include/net/llc_if.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/llc_if.h b/include/net/llc_if.h index a05d04ac4513..c608812a8e89 100644 --- a/include/net/llc_if.h +++ b/include/net/llc_if.h | |||
@@ -79,6 +79,10 @@ static inline int llc_addrany(const struct llc_addr *addr) | |||
79 | return llc_mac_null(addr->mac) && !addr->lsap; | 79 | return llc_mac_null(addr->mac) && !addr->lsap; |
80 | } | 80 | } |
81 | 81 | ||
82 | static inline int llc_mac_multicast(const u8 *mac) | ||
83 | { | ||
84 | return is_multicast_ether_addr(mac); | ||
85 | } | ||
82 | /** | 86 | /** |
83 | * llc_mac_match - determines if two mac addresses are the same | 87 | * llc_mac_match - determines if two mac addresses are the same |
84 | * @mac1: First mac address to compare. | 88 | * @mac1: First mac address to compare. |