diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2024-02-16 14:54:17 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2024-02-16 15:00:03 +0100 |
commit | 5c04f0e2354ff0cca9b1479e68882b72755f3aab (patch) | |
tree | 4cb7108c24bf8015e4e0e99ce8145c7a9587c68e /sysdep/linux/netlink.c | |
parent | e68363909cb9733c1bf55fff80a8b034e4111849 (diff) |
Netlink: Fix spelling of krt_ssthresh / krt_lock_ssthresh
BIRD route attribute for RTAX_SSTHRESH metric was krt_sstresh instead of
krt_ssthresh. Fix that and keep old name as an depreacted alias.
Diffstat (limited to 'sysdep/linux/netlink.c')
-rw-r--r-- | sysdep/linux/netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index 1ace6c27..6b4fc80c 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -2148,7 +2148,7 @@ krt_sys_copy_config(struct krt_config *d, struct krt_config *s) } static const char *krt_metrics_names[KRT_METRICS_MAX] = { - NULL, "lock", "mtu", "window", "rtt", "rttvar", "sstresh", "cwnd", "advmss", + NULL, "lock", "mtu", "window", "rtt", "rttvar", "ssthresh", "cwnd", "advmss", "reordering", "hoplimit", "initcwnd", "features", "rto_min", "initrwnd", "quickack", "congctl", "fastopen_no_cookie" }; |