chiark / gitweb /
networkd: refactor socket activation a bit
[elogind.git] / src / network / networkd-netdev-vxlan.h
index 8c906f10751aaacfd7927ebfbd42b52cccf012d1..6339af9add776680d246d0cba3c1e356d6b5a7d1 100644 (file)
@@ -33,10 +33,20 @@ struct VxLan {
         NetDev meta;
 
         uint64_t id;
+
+        int family;
         union in_addr_union group;
+
         unsigned tos;
         unsigned ttl;
+
+        usec_t fdb_ageing;
+
         bool learning;
+        bool arp_proxy;
+        bool route_short_circuit;
+        bool l2miss;
+        bool l3miss;
 };
 
 extern const NetDevVTable vxlan_vtable;