diff options
author | Maria Matejka <mq@ucw.cz> | 2023-02-07 15:14:40 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-04-04 17:00:58 +0200 |
commit | 6543303ad4d509340643ae1f2b585f6278cf0463 (patch) | |
tree | f7fc6931409f154009558d57892c58c76f52bd92 /proto/rip/rip.c | |
parent | 958bb84f772ba098d67d70bcbbdb9b700f17abb7 (diff) |
BFD notifications respect protocol loop settings
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r-- | proto/rip/rip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 97d1dd80..2c504112 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -543,7 +543,7 @@ rip_update_bfd(struct rip_proto *p, struct rip_neighbor *n) ip_addr saddr = rip_is_v2(p) ? n->ifa->sk->saddr : n->nbr->ifa->ip; n->bfd_req = bfd_request_session(p->p.pool, n->nbr->addr, saddr, n->nbr->iface, p->p.vrf, - rip_bfd_notify, n, NULL); + rip_bfd_notify, n, p->p.loop, NULL); } if (!use_bfd && n->bfd_req) |