diff options
author | Jiří Klimeš <jklimes@redhat.com> | 2015-02-20 12:51:44 +0100 |
---|---|---|
committer | Jiří Klimeš <jklimes@redhat.com> | 2015-02-26 09:08:13 +0100 |
commit | 1252386940dca3c6d0f5da123195d1c864af8b83 (patch) | |
tree | b5f88117f42601deaa491e7fe10558c85a4a0398 | |
parent | 11efde3b408865104c562bfecdf8e824dc0d7146 (diff) | |
download | NetworkManager-1252386940dca3c6d0f5da123195d1c864af8b83.tar.gz |
device: add multicast-snooping option support
-rw-r--r-- | src/devices/nm-device-bridge.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/nm-device-bridge.c b/src/devices/nm-device-bridge.c index a2ed4b4176..c92e8ddfa7 100644 --- a/src/devices/nm-device-bridge.c +++ b/src/devices/nm-device-bridge.c @@ -15,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * Copyright 2011 - 2012 Red Hat, Inc. + * Copyright 2011 - 2015 Red Hat, Inc. */ #include "config.h" @@ -158,6 +158,7 @@ static const Option master_options[] = { { NM_SETTING_BRIDGE_HELLO_TIME, "hello_time", TRUE, TRUE }, { NM_SETTING_BRIDGE_MAX_AGE, "max_age", TRUE, TRUE }, { NM_SETTING_BRIDGE_AGEING_TIME, "ageing_time", TRUE, TRUE }, + { NM_SETTING_BRIDGE_MULTICAST_SNOOPING, "multicast_snooping", FALSE, FALSE }, { NULL, NULL } }; |