From 8f0c887a52fb19cee14725f66d435cebf2010390 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Thu, 23 Apr 2009 14:16:05 +0200 Subject: Fixe bug in BGPv6 that causes to send invalid network withdraws. --- proto/bgp/packets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/bgp/packets.c b/proto/bgp/packets.c index 1841205..ce3d71e 100644 --- a/proto/bgp/packets.c +++ b/proto/bgp/packets.c @@ -252,7 +252,7 @@ bgp_create_update(struct bgp_conn *conn, byte *buf) *tmp++ = 0; *tmp++ = BGP_AF_IPV6; *tmp++ = 1; - ea->attrs[0].u.ptr->length = bgp_encode_prefixes(p, tmp, buck, remains-11); + ea->attrs[0].u.ptr->length = 3 + bgp_encode_prefixes(p, tmp, buck, remains-11); size = bgp_encode_attrs(p, w, ea, remains); ASSERT(size >= 0); w += size; -- cgit v1.2.3