diff options
| author | Chirag Shah <chirag@nvidia.com> | 2020-08-12 13:30:24 -0700 | 
|---|---|---|
| committer | Chirag Shah <chirag@nvidia.com> | 2020-10-03 11:25:37 -0700 | 
| commit | ff8a8a7ac10b3211d5586c29dfcc5a3b32841029 (patch) | |
| tree | 3a6354d31147a423a90c05a6abb3a48fcfde83a5 /bgpd/bgp_vty.h | |
| parent | e4a464160dee2b53f2851879b2c736139061e74c (diff) | |
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 95eefbc36f..a9e86ec09a 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 */  | 
