diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-01-02 10:33:39 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-09-13 18:05:34 +0200 |
commit | 604f7be862c59254edd342fc5ce4eedda35c97b7 (patch) | |
tree | 0e231427a52fbec285530806f6b3c0d5d8763a6f | |
parent | c120f35406eb12d2706b447beb790ce4e6c6290c (diff) |
Wireguard: Remove BGP report calls
-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 78d437e8..e3173eb7 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 UNUSED, 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 UNUSED, 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); } |