diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-04-18 17:21:13 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-04-18 17:21:13 +0200 |
commit | 02164814b49a3385caae0ea10aa042487c6002d2 (patch) | |
tree | 697c985f8b4a1a5c072d0e386bf4fa41ca43c602 /proto/bgp/packets.c | |
parent | fbeef4b74dfd73fb86b1ccc5dd1c6109e3c21624 (diff) |
BMP: Allow build without BMP and disable BMP build by default
It has still several important issues to be enabled by default.
Diffstat (limited to 'proto/bgp/packets.c')
-rw-r--r-- | proto/bgp/packets.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/proto/bgp/packets.c b/proto/bgp/packets.c index 42016eae..b9537169 100644 --- a/proto/bgp/packets.c +++ b/proto/bgp/packets.c @@ -2407,6 +2407,9 @@ bgp_create_mp_unreach(struct bgp_write_state *s, struct bgp_bucket *buck, byte * return buf+11+len; } + +#ifdef CONFIG_BMP + static byte * bgp_create_update_bmp(struct bgp_channel *c, byte *buf, struct bgp_bucket *buck, bool update) { @@ -2489,6 +2492,9 @@ bgp_rte_update_in_notify(struct channel *C, const net_addr *n, bmp_route_monitor_put_update_in_pre_msg(buf, end - buf); } +#endif /* CONFIG_BMP */ + + static byte * bgp_create_update(struct bgp_channel *c, byte *buf) { |