diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:36:54 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:36:54 +0200 |
commit | 45af19dd99b3c8f954621e09075e8be180e2f731 (patch) | |
tree | 2e25c82a8e13080d589c79ec0478e5127a9404fb /proto/bfd/bfd.h | |
parent | ef3a8138c909baf58c61ddf2edd815eab899d3a6 (diff) | |
parent | 652be92a21f5575e5f74f6abe98eb4200b86776c (diff) |
Merge commit '652be92a21f5575e5f74f6abe98eb4200b86776c' into haugesund
Diffstat (limited to 'proto/bfd/bfd.h')
-rw-r--r-- | proto/bfd/bfd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/bfd/bfd.h b/proto/bfd/bfd.h index 91fdaa60..7caf9f66 100644 --- a/proto/bfd/bfd.h +++ b/proto/bfd/bfd.h @@ -47,6 +47,7 @@ struct bfd_config u8 accept_ipv6; u8 accept_direct; u8 accept_multihop; + u8 strict_bind; }; struct bfd_iface_config @@ -116,6 +117,7 @@ struct bfd_iface struct bfd_proto *bfd; sock *sk; + sock *rx; u32 uc; u8 changed; }; @@ -221,6 +223,7 @@ void bfd_show_sessions(struct proto *P); /* packets.c */ void bfd_send_ctl(struct bfd_proto *p, struct bfd_session *s, int final); sock * bfd_open_rx_sk(struct bfd_proto *p, int multihop, int inet_version); +sock * bfd_open_rx_sk_bound(struct bfd_proto *p, ip_addr local, struct iface *ifa); sock * bfd_open_tx_sk(struct bfd_proto *p, ip_addr local, struct iface *ifa); |