diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-07-23 21:07:57 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-07-23 21:07:57 +0200 |
commit | 28a5679cdcd9db6d9132b718b63b250892438f66 (patch) | |
tree | c47d60ea1ded5a6a5e3e606ad1e18742c6130b02 /src/basic | |
parent | 3964118f5a3bd9aae66508f84a27b95435f62228 (diff) | |
parent | 165c41a99ab6002ef3ba6bd1f9361abf32c077f2 (diff) |
Merge pull request #682 from ssahani/bridge
networkd: add bridge link properties
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/missing.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/basic/missing.h b/src/basic/missing.h index bd49f10e76..ed6cd80c75 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -832,7 +832,7 @@ static inline int setns(int fd, int nstype) { #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1) #endif -#if !HAVE_DECL_IFLA_BRPORT_UNICAST_FLOOD +#if !HAVE_DECL_IFLA_BRPORT_LEARNING_SYNC #define IFLA_BRPORT_UNSPEC 0 #define IFLA_BRPORT_STATE 1 #define IFLA_BRPORT_PRIORITY 2 @@ -843,7 +843,9 @@ static inline int setns(int fd, int nstype) { #define IFLA_BRPORT_FAST_LEAVE 7 #define IFLA_BRPORT_LEARNING 8 #define IFLA_BRPORT_UNICAST_FLOOD 9 -#define __IFLA_BRPORT_MAX 10 +#define IFLA_BRPORT_PROXYARP 10 +#define IFLA_BRPORT_LEARNING_SYNC 11 +#define __IFLA_BRPORT_MAX 12 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1) #endif |