diff options
Diffstat (limited to 'proto/bgp/attrs.c')
-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); } |