diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-08-20 15:59:39 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-08-20 15:59:39 +0200 |
commit | 72992435113f0fcb2101e1c7fb61a3c4ad235740 (patch) | |
tree | b7091686c0d686ec1e2b73511bebae63f079c336 /bgpd | |
parent | Merge pull request #4848 from donaldsharp/spelling_errors (diff) | |
download | frr-72992435113f0fcb2101e1c7fb61a3c4ad235740.tar.xz frr-72992435113f0fcb2101e1c7fb61a3c4ad235740.zip |
bgpd: Remove declarations of unused functions
Code inspection found some functions being declared
in a .h file but FRR does not have the functions
implemented.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bgpd')
-rw-r--r-- | bgpd/bgp_packet.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bgpd/bgp_packet.h b/bgpd/bgp_packet.h index e8eacee58..fc6fc66a4 100644 --- a/bgpd/bgp_packet.h +++ b/bgpd/bgp_packet.h @@ -57,9 +57,6 @@ extern void bgp_notify_send_with_data(struct peer *, uint8_t, uint8_t, extern void bgp_route_refresh_send(struct peer *, afi_t, safi_t, uint8_t, uint8_t, int); extern void bgp_capability_send(struct peer *, afi_t, safi_t, int, int); -extern void bgp_default_update_send(struct peer *, struct attr *, afi_t, safi_t, - struct peer *); -extern void bgp_default_withdraw_send(struct peer *, afi_t, safi_t); extern int bgp_capability_receive(struct peer *, bgp_size_t); |