]> git.proxmox.com Git - mirror_frr.git/blob - ripd/rip_bfd.h
Merge pull request #13386 from donaldsharp/bgp_received_routes
[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 struct rip;
13 struct rip_interface;
14 struct rip_peer;
15
16 void rip_bfd_session_update(struct rip_peer *rp);
17 void rip_bfd_interface_update(struct rip_interface *ri);
18 void rip_bfd_instance_update(struct rip *rip);
19 void rip_bfd_init(struct event_loop *tm);
20
21 #endif /* _RIP_BFD_ */