mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-22 05:40:09 +01:00
tui: add "Enable IGMP snooping" to bridge editor (bgo #744853)
https://bugzilla.gnome.org/show_bug.cgi?id=744853
This commit is contained in:
parent
2c96ac73be
commit
cdc8bd178b
1 changed files with 6 additions and 0 deletions
|
|
@ -91,6 +91,12 @@ nmt_page_bridge_constructed (GObject *object)
|
|||
label = nmt_newt_label_new (_("seconds"));
|
||||
nmt_editor_grid_append (grid, _("Aging time"), widget, label);
|
||||
|
||||
widget = stp = nmt_newt_checkbox_new (_("Enable IGMP snooping"));
|
||||
g_object_bind_property (s_bridge, NM_SETTING_BRIDGE_MULTICAST_SNOOPING,
|
||||
widget, "active",
|
||||
G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
|
||||
nmt_editor_grid_append (grid, NULL, widget, NULL);
|
||||
|
||||
widget = stp = nmt_newt_checkbox_new (_("Enable STP (Spanning Tree Protocol)"));
|
||||
g_object_bind_property (s_bridge, NM_SETTING_BRIDGE_STP,
|
||||
widget, "active",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue