frr/vrrpd/vrrp_vty.h
Daniel Baumann 3124f89aed
Adding upstream version 10.1.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 10:03:58 +01:00

34 lines
1.1 KiB
C

// SPDX-License-Identifier: GPL-2.0-or-later
/*
* VRRP CLI commands.
* Copyright (C) 2018-2019 Cumulus Networks, Inc.
* Quentin Young
*/
#ifndef __VRRP_VTY_H__
#define __VRRP_VTY_H__
#include "lib/northbound.h"
void vrrp_vty_init(void);
/* Northbound callbacks */
void cli_show_vrrp(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults);
void cli_show_shutdown(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults);
void cli_show_priority(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults);
void cli_show_advertisement_interval(struct vty *vty,
const struct lyd_node *dnode,
bool show_defaults);
void cli_show_ip(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults);
void cli_show_ipv6(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults);
void cli_show_preempt(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults);
void cli_show_checksum_with_ipv4_pseudoheader(struct vty *vty,
const struct lyd_node *dnode,
bool show_defaults);
#endif /* __VRRP_VTY_H__ */