]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_bfd.h
Merge pull request #771 from qlyoung/printf-madness
[mirror_frr.git] / pimd / pim_bfd.h
1 /*
2 * pim_bfd.h: PIM BFD definitions and structures
3 *
4 * Copyright (C) 2017 Cumulus Networks, Inc.
5 * Chirag Shah
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; see the file COPYING; if not, write to the
19 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20 * MA 02110-1301 USA
21 */
22
23 #ifndef PIM_BFD_H
24 #define PIM_BFD_H
25
26 #include "if.h"
27
28 void pim_bfd_init (void);
29 void pim_bfd_write_config (struct vty *vty, struct interface *ifp);
30 void
31 pim_bfd_show_info (struct vty *vty, void *bfd_info, json_object * json_obj,
32 u_char use_json, int param_only);
33 void
34 pim_bfd_if_param_set (struct interface *ifp, u_int32_t min_rx,
35 u_int32_t min_tx, u_int8_t detect_mult, int defaults);
36 int pim_bfd_reg_dereg_all_nbr (struct interface *ifp, int command);
37 void
38 pim_bfd_trigger_event (struct pim_interface *pim_ifp, struct pim_neighbor *nbr, uint8_t nbr_up);
39 void
40 pim_bfd_info_nbr_create (struct pim_interface *pim_ifp, struct pim_neighbor *neigh);
41 void pim_bfd_info_free(void **bfd_info);
42 #endif /* _PIM_BFD_H */