diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-08 15:59:44 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-08 16:00:33 +0100 |
commit | 517d05dff17e881b880ee4fd28a72e827c10e8c3 (patch) | |
tree | 66b4286fe0ce69c77d39f7c5edc160dd273353a3 /sysdep/linux | |
parent | eb95b5ec1a5c3bd4e57f3a134828f8de2875cb43 (diff) |
Enable ECMP and Link detection by default
ECMP is not enabled on BSD, where it is not supported by BIRD.
Diffstat (limited to 'sysdep/linux')
-rw-r--r-- | sysdep/linux/netlink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index 05c1fa8c..ca5c79a4 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -80,6 +80,8 @@ struct rtvia { #define krt_ecmp6(p) ((p)->af == AF_INET6) +const int rt_default_ecmp = 16; + /* * Structure nl_parse_state keeps state of received route processing. Ideally, * we could just independently parse received Netlink messages and immediately |