mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
netlink: fix route protocol constant values to match Linux
Although these particular constants aren't supported, the incorrect values break bird 2.15 operation. PR: 277618 Reported by: Ondrej Zajicek <santiago@crfreenet.org> (cherry picked from commit 16f8d8829472dfdf6b3b2bb21d652f0bafefccbc)
This commit is contained in:
parent
97bfe58ddc
commit
d45714ade3
1 changed files with 2 additions and 2 deletions
|
|
@ -282,8 +282,8 @@ struct rtvia {
|
|||
NL_RTAX_RTO_MIN = 13, /* not supported */
|
||||
NL_RTAX_INITRWND = 14, /* not supported */
|
||||
NL_RTAX_QUICKACK = 15, /* not supported */
|
||||
NL_RTAX_CC_ALGO = 15, /* not supported */
|
||||
NL_RTAX_FASTOPEN_NO_COOKIE = 16, /* not supported */
|
||||
NL_RTAX_CC_ALGO = 16, /* not supported */
|
||||
NL_RTAX_FASTOPEN_NO_COOKIE = 17, /* not supported */
|
||||
__NL_RTAX_MAX
|
||||
};
|
||||
#define NL_RTAX_MAX (__NL_RTAX_MAX - 1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue