diff options
author | David Lamparter <equinox@diac24.net> | 2019-08-01 17:44:23 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-12-06 15:13:32 +0100 |
commit | dd65f45ebc5d3c0b004aa0adb5a058fa3c92bd81 (patch) | |
tree | 31cc304d9423eded730c1602bb8015d82d2314f4 /bgpd/bgp_vty.h | |
parent | doc: document defaults mechanism (diff) | |
download | frr-dd65f45ebc5d3c0b004aa0adb5a058fa3c92bd81.tar.xz frr-dd65f45ebc5d3c0b004aa0adb5a058fa3c92bd81.zip |
bgpd: move config-write to bgp_vty.c
There's no good reason to have this in bgpd.c; it's just there
historically. Move it to bgp_vty.c where it makes more sense.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'bgpd/bgp_vty.h')
-rw-r--r-- | bgpd/bgp_vty.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index 27b5ea47b..2f7074d6d 100644 --- a/bgpd/bgp_vty.h +++ b/bgpd/bgp_vty.h @@ -72,6 +72,5 @@ extern int bgp_vty_find_and_parse_afi_safi_bgp(struct vty *vty, bool use_json); extern int bgp_show_summary_vty(struct vty *vty, const char *name, afi_t afi, safi_t safi, bool show_failed, bool use_json); -extern void bgp_vpn_policy_config_write_afi(struct vty *vty, struct bgp *bgp, - afi_t afi); + #endif /* _QUAGGA_BGP_VTY_H */ |