diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-01-02 10:33:39 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-05-08 18:52:55 +0200 |
commit | 25d8260343709681de75d6186884bc201d9c5cbe (patch) | |
tree | fd0ac211e25fd23716d4536a3d1503a3804f44c5 /proto | |
parent | c830aa273118841e8cd32baf1dc5b5dc70095d59 (diff) |
Wireguard: Remove BGP report calls
Diffstat (limited to 'proto')
-rw-r--r-- | proto/bgp/attrs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/proto/bgp/attrs.c b/proto/bgp/attrs.c index 2f4472b1..29a11836 100644 --- a/proto/bgp/attrs.c +++ b/proto/bgp/attrs.c @@ -866,7 +866,6 @@ bgp_decode_large_community(struct bgp_parse_state *s, uint code UNUSED, uint fla static void bgp_export_tunnel_encap(struct bgp_export_state *s, eattr *a) { - REPORT("bgp_export_tunnel_encap"); if (a->u.ptr->length == 0) UNSET(a); @@ -876,14 +875,12 @@ bgp_export_tunnel_encap(struct bgp_export_state *s, eattr *a) static void bgp_decode_tunnel_encap(struct bgp_parse_state *s, uint code UNUSED, uint flags, byte *data, uint len, ea_list **to) { - REPORT("bgp_decode_tunnel_encap %d", len); bgp_set_attr_data(to, s->pool, BA_TUNNEL_ENCAP, flags, data, len); } static int bgp_encode_tunnel_encap(struct bgp_write_state *s UNUSED, eattr *a, byte *buf, uint size) { - REPORT("bgp_encode_tunnel_encap %d", size); return bgp_put_attr(buf, size, EA_ID(a->id), a->flags, a->u.ptr->data, a->u.ptr->length); } |