summaryrefslogtreecommitdiff
path: root/bgpd/bgp_route.h
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2023-02-21 08:18:37 -0500
committerGitHub <noreply@github.com>2023-02-21 08:18:37 -0500
commitf48c8a92fbb6f57738422cce5a43509137a4f215 (patch)
tree347c9235103b9a5febbc4ff356c0a69227ce1374 /bgpd/bgp_route.h
parent9a4bb5e469095636e1e0c90228bd9bbc3087b100 (diff)
parentbf0c6163831b34343b80fb4b176dd0a721b9e420 (diff)
Merge pull request #12854 from opensourcerouting/fix/bgp_withdraw_attr_not_used
bgpd: Drop struct attr from bgp_withdraw()
Diffstat (limited to 'bgpd/bgp_route.h')
-rw-r--r--bgpd/bgp_route.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bgpd/bgp_route.h b/bgpd/bgp_route.h
index bd4191bfd9..48630cb1e5 100644
--- a/bgpd/bgp_route.h
+++ b/bgpd/bgp_route.h
@@ -743,10 +743,10 @@ extern void bgp_update(struct peer *peer, const struct prefix *p,
uint32_t num_labels, int soft_reconfig,
struct bgp_route_evpn *evpn);
extern void bgp_withdraw(struct peer *peer, const struct prefix *p,
- uint32_t addpath_id, struct attr *attr, afi_t afi,
- safi_t safi, int type, int sub_type,
- struct prefix_rd *prd, mpls_label_t *label,
- uint32_t num_labels, struct bgp_route_evpn *evpn);
+ uint32_t addpath_id, afi_t afi, safi_t safi, int type,
+ int sub_type, struct prefix_rd *prd,
+ mpls_label_t *label, uint32_t num_labels,
+ struct bgp_route_evpn *evpn);
/* for bgp_nexthop and bgp_damp */
extern void bgp_process(struct bgp *, struct bgp_dest *, afi_t, safi_t);