diff options
author | Hans Dedecker <dedeckeh@gmail.com> | 2014-12-04 12:07:18 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2014-12-08 18:23:59 +0100 |
commit | 7c5d82806c11886bcc08821584fe51790a593feb (patch) | |
tree | 7c82070126191c13061e8880b1692c32b2e6f4da /device.h | |
parent | db99fce3f59d1a9629ca5bc7ec8f8208acf02816 (diff) |
netifd: Add igmpversion config support
Config support to set the IGMP host version on device level; possible values are :
1 : IGMPv1
2 : IGMPv2
3 : IGMPv3
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Cleand up and simplified
Signed-off-by: Steven Barth <steven@midlink.org>
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -35,6 +35,7 @@ enum { DEV_ATTR_PROMISC, DEV_ATTR_RPFILTER, DEV_ATTR_ACCEPTLOCAL, + DEV_ATTR_IGMPVERSION, __DEV_ATTR_MAX, }; @@ -70,6 +71,7 @@ enum { DEV_OPT_PROMISC = (1 << 4), DEV_OPT_RPFILTER = (1 << 5), DEV_OPT_ACCEPTLOCAL = (1 << 6), + DEV_OPT_IGMPVERSION = (1 << 7), }; /* events broadcasted to all users of a device */ @@ -119,6 +121,7 @@ struct device_settings { bool promisc; unsigned int rpfilter; bool acceptlocal; + unsigned int igmpversion; }; /* |