diff options
author | Chirag Shah <chirag@nvidia.com> | 2020-08-12 22:30:24 +0200 |
---|---|---|
committer | Chirag Shah <chirag@nvidia.com> | 2020-10-03 20:25:37 +0200 |
commit | ff8a8a7ac10b3211d5586c29dfcc5a3b32841029 (patch) | |
tree | 3a6354d31147a423a90c05a6abb3a48fcfde83a5 /bgpd/bgp_vty.h | |
parent | bgpd: register northbound callbacks to bootstrap (diff) | |
download | frr-ff8a8a7ac10b3211d5586c29dfcc5a3b32841029.tar.xz frr-ff8a8a7ac10b3211d5586c29dfcc5a3b32841029.zip |
bgpd: convert global config to transactional cli
Convert global congigurations clis to transactional
clis using northbound plugin callbacks.
Signed-off-by: Chirag Shah <chirag@nvidia.com>
Diffstat (limited to 'bgpd/bgp_vty.h')
-rw-r--r-- | bgpd/bgp_vty.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index 95eefbc36..a9e86ec09 100644 --- a/bgpd/bgp_vty.h +++ b/bgpd/bgp_vty.h @@ -180,5 +180,12 @@ int bgp_vty_find_and_parse_bgp(struct vty *vty, struct cmd_token **argv, extern int bgp_show_summary_vty(struct vty *vty, const char *name, afi_t afi, safi_t safi, bool show_failed, bool show_established, bool use_json); +extern int bgp_clear_star_soft_in(const char *name, char *errmsg, + size_t errmsg_len); +extern int bgp_clear_star_soft_out(const char *name, char *errmsg, + size_t errmsg_len); +int bgp_wpkt_quanta_config_vty(struct bgp *bgp, uint32_t quanta, bool set); +int bgp_rpkt_quanta_config_vty(struct bgp *bgp, uint32_t quanta, bool set); + #endif /* _QUAGGA_BGP_VTY_H */ |