diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-01-27 03:49:52 +0100 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-03-23 07:50:21 +0100 |
commit | ef4b8c8446b5f164a310a3955e90f7ffd59e2a59 (patch) | |
tree | 575dd71e818b187598dc8aab8f05831bed290368 /system.h | |
parent | 20510bd45d70c5b07718e7608d82133883346673 (diff) |
bridge: allow enabling or disabling the multicast querier independently of IGMP snooping
In larger networks, especially big batman-adv meshes, it may be desirable to
enable IGMP snooping on every bridge without enabling the multicast querier
to specifically put the querier on a well-connected node.
This patch adds a new UCI option 'multicast_querier' for bridges which allows
this. The default is still the value of the 'igmp_snooping' option to maintain
backwards compatiblity.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Diffstat (limited to 'system.h')
-rw-r--r-- | system.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -50,6 +50,7 @@ struct bridge_config { enum bridge_opt flags; bool stp; bool igmp_snoop; + bool multicast_querier; unsigned short priority; int forward_delay; bool bridge_empty; |