]> git.proxmox.com Git - mirror_frr.git/blobdiff - ospfd/ospf_bfd.h
Merge pull request #5810 from donaldsharp/fix_yang_routemap
[mirror_frr.git] / ospfd / ospf_bfd.h
index 436597c0ba9ef4eecba33c3291716765cbc008b6..74385d326852f3d02c3460f5bc17fd084f8e3a5a 100644 (file)
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with GNU Zebra; see the file COPYING.  If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef _ZEBRA_OSPF_BFD_H
 #define _ZEBRA_OSPF_BFD_H
 
-extern void
-ospf_bfd_init(void);
+#include "json.h"
 
-extern void
-ospf_bfd_write_config(struct vty *vty, struct ospf_if_params *params);
+extern void ospf_bfd_init(void);
 
-extern void
-ospf_bfd_trigger_event(struct ospf_neighbor *nbr, int old_state, int state);
+extern void ospf_bfd_write_config(struct vty *vty,
+                                 struct ospf_if_params *params);
+
+extern void ospf_bfd_trigger_event(struct ospf_neighbor *nbr, int old_state,
+                                  int state);
+
+extern void ospf_bfd_interface_show(struct vty *vty, struct interface *ifp,
+                                   json_object *json_interface_sub,
+                                   bool use_json);
+
+extern void ospf_bfd_info_nbr_create(struct ospf_interface *oi,
+                                    struct ospf_neighbor *nbr);
+
+extern void ospf_bfd_show_info(struct vty *vty, void *bfd_info,
+                              json_object *json_obj, bool use_json,
+                              int param_only);
+
+extern void ospf_bfd_info_free(void **bfd_info);
 
 #endif /* _ZEBRA_OSPF_BFD_H */