diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-02-27 16:16:48 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-02-27 17:29:17 +0100 |
commit | 757cab18d6427d9246618ce48c158f2b05183838 (patch) | |
tree | 3dc5a4d2923be9e5e54f374f9788635428269423 /lib | |
parent | 22c3cf955dbbb65aa29e322efa70dabb749f0232 (diff) |
BGP: Support for MD5SIG together with remote range
When dynamic BGP with remote range is configured, MD5SIG needs to use
newer socket option (TCP_MD5SIG_EXT) to specify remote addres range for
listening socket.
Thanks to Adam KuĊagowski for the suggestion.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/socket.h b/lib/socket.h index 03c15dcd..f2b0c042 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -106,7 +106,7 @@ int sk_leave_group(sock *s, ip_addr maddr); /* Leave multicast group on sk iface int sk_setup_broadcast(sock *s); int sk_set_ttl(sock *s, int ttl); /* Set transmit TTL for given socket */ int sk_set_min_ttl(sock *s, int ttl); /* Set minimal accepted TTL for given socket */ -int sk_set_md5_auth(sock *s, ip_addr local, ip_addr remote, struct iface *ifa, char *passwd, int setkey); +int sk_set_md5_auth(sock *s, ip_addr local, ip_addr remote, int pxlen, struct iface *ifa, char *passwd, int setkey); int sk_set_ipv6_checksum(sock *s, int offset); int sk_set_icmp6_filter(sock *s, int p1, int p2); void sk_log_error(sock *s, const char *p); |