diff options
Diffstat (limited to 'vrrpd/vrrp_vty.h')
-rw-r--r-- | vrrpd/vrrp_vty.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/vrrpd/vrrp_vty.h b/vrrpd/vrrp_vty.h new file mode 100644 index 0000000..6feb8e8 --- /dev/null +++ b/vrrpd/vrrp_vty.h @@ -0,0 +1,34 @@ +// 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__ */ |