diff options
author | Linus Lüssing <linus.luessing@c0d3.blue> | 2015-05-02 14:01:07 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-04 14:49:23 -0400 |
commit | 9afd85c9e4552b276e2f4cfefd622bdeeffbbf26 (patch) | |
tree | 3657b92f850d03ec3a8f67e6171d5b61abdf3ae0 /net/ipv6/Makefile | |
parent | 3c9e4f870012350a36dc3091c7a57f5ba2799afe (diff) | |
download | linux-stable-9afd85c9e4552b276e2f4cfefd622bdeeffbbf26.tar.gz linux-stable-9afd85c9e4552b276e2f4cfefd622bdeeffbbf26.tar.bz2 linux-stable-9afd85c9e4552b276e2f4cfefd622bdeeffbbf26.zip |
net: Export IGMP/MLD message validation code
With this patch, the IGMP and MLD message validation functions are moved
from the bridge code to IPv4/IPv6 multicast files. Some small
refactoring was done to enhance readibility and to iron out some
differences in behaviour between the IGMP and MLD parsing code (e.g. the
skb-cloning of MLD messages is now only done if necessary, just like the
IGMP part always did).
Finally, these IGMP and MLD message validation functions are exported so
that not only the bridge can use it but batman-adv later, too.
Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/Makefile')
-rw-r--r-- | net/ipv6/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/Makefile b/net/ipv6/Makefile index 2e8c06108ab9..0f3f1999719a 100644 --- a/net/ipv6/Makefile +++ b/net/ipv6/Makefile @@ -48,4 +48,5 @@ obj-$(subst m,y,$(CONFIG_IPV6)) += inet6_hashtables.o ifneq ($(CONFIG_IPV6),) obj-$(CONFIG_NET_UDP_TUNNEL) += ip6_udp_tunnel.o +obj-y += mcast_snoop.o endif |