Fixe bug in BGPv6 that causes to send invalid network withdraws.
This commit is contained in:
parent
b9539e78d8
commit
8f0c887a52
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue