Commit 08b202b6 authored by YOSHIFUJI Hideaki's avatar YOSHIFUJI Hideaki

bridge br_multicast: IPv6 MLD support.

Signed-off-by: default avatarYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
parent 8ef2a9a5
...@@ -33,14 +33,14 @@ config BRIDGE ...@@ -33,14 +33,14 @@ config BRIDGE
If unsure, say N. If unsure, say N.
config BRIDGE_IGMP_SNOOPING config BRIDGE_IGMP_SNOOPING
bool "IGMP snooping" bool "IGMP/MLD snooping"
depends on BRIDGE depends on BRIDGE
depends on INET depends on INET
default y default y
---help--- ---help---
If you say Y here, then the Ethernet bridge will be able selectively If you say Y here, then the Ethernet bridge will be able selectively
forward multicast traffic based on IGMP traffic received from each forward multicast traffic based on IGMP/MLD traffic received from
port. each port.
Say N to exclude this support and reduce the binary size. Say N to exclude this support and reduce the binary size.
......
This diff is collapsed.
...@@ -49,6 +49,9 @@ struct br_ip ...@@ -49,6 +49,9 @@ struct br_ip
{ {
union { union {
__be32 ip4; __be32 ip4;
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
struct in6_addr ip6;
#endif
} u; } u;
__be16 proto; __be16 proto;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment