summaryrefslogtreecommitdiff
path: root/system.h
diff options
context:
space:
mode:
authorJohannes Kimmel <fff@bareminimum.eu>2020-09-04 04:59:42 +0200
committerHans Dedecker <dedeckeh@gmail.com>2020-09-12 21:14:03 +0200
commit11223f5550f7dd8faefb85441065b682be16e61f (patch)
tree64ea0204e58faa107fb8afb585b231f9fa9f3451 /system.h
parent226566b967dc4ef4d83ed7844b8ad746f4306f8d (diff)
downloadnetifd-11223f5550f7dd8faefb85441065b682be16e61f.tar.gz
netifd: vxlan: add most missing boolean options
adds the folloing missing options: - learning - rsc - proxy - l2miss - l3miss - gbp See ip-link(3) for their meaning. still missing: - external - gpe I'm not sure how to handle them at the moment. It's unclear to me what IFLA_VXLAN_* value corresponds to the 'external' option and according to the manpage, gpe depends on it. Signed-off-by: Johannes Kimmel <fff@bareminimum.eu>
Diffstat (limited to 'system.h')
-rw-r--r--system.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/system.h b/system.h
index bf9e1d7..290c2e5 100644
--- a/system.h
+++ b/system.h
@@ -46,6 +46,12 @@ enum vxlan_data {
VXLAN_DATA_ATTR_TXCSUM,
VXLAN_DATA_ATTR_SRCPORTMIN,
VXLAN_DATA_ATTR_SRCPORTMAX,
+ VXLAN_DATA_ATTR_LEARNING,
+ VXLAN_DATA_ATTR_RSC,
+ VXLAN_DATA_ATTR_PROXY,
+ VXLAN_DATA_ATTR_L2MISS,
+ VXLAN_DATA_ATTR_L3MISS,
+ VXLAN_DATA_ATTR_GBP,
__VXLAN_DATA_ATTR_MAX
};