]> git.proxmox.com Git - mirror_frr.git/blob - ripd/rip_bfd.h
Merge pull request #13428 from opensourcerouting/ripd-bfd-fixes
[mirror_frr.git] / ripd / rip_bfd.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * RIP BFD integration.
4 * Copyright (C) 2021-2023 Network Device Education Foundation, Inc. ("NetDEF")
5 */
6
7 #ifndef _RIP_BFD_
8 #define _RIP_BFD_
9
10 #include "frrevent.h"
11
12 DECLARE_MTYPE(RIP_BFD_PROFILE);
13
14 struct rip;
15 struct rip_interface;
16 struct rip_peer;
17
18 void rip_bfd_session_update(struct rip_peer *rp);
19 void rip_bfd_interface_update(struct rip_interface *ri);
20 void rip_bfd_instance_update(struct rip *rip);
21 void rip_bfd_init(struct event_loop *tm);
22
23 #endif /* _RIP_BFD_ */