From 604f7be862c59254edd342fc5ce4eedda35c97b7 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Thu, 2 Jan 2020 10:33:39 +0100 Subject: Wireguard: Remove BGP report calls --- proto/bgp/attrs.c | 3 --- 1 file changed, 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); } -- cgit v1.2.3