mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-01 23:29:38 +00:00
bgpd: ignore 4 bits of attribute flags byte
This commit is contained in:
parent
214bcaa13e
commit
2d42e68aa0
@ -1788,7 +1788,10 @@ bgp_attr_parse (struct peer *peer, struct attr *attr, bgp_size_t size,
|
||||
|
||||
/* Fetch attribute flag and type. */
|
||||
startp = BGP_INPUT_PNT (peer);
|
||||
flag = stream_getc (BGP_INPUT (peer));
|
||||
/* "The lower-order four bits of the Attribute Flags octet are
|
||||
unused. They MUST be zero when sent and MUST be ignored when
|
||||
received." */
|
||||
flag = 0xF0 & stream_getc (BGP_INPUT (peer));
|
||||
type = stream_getc (BGP_INPUT (peer));
|
||||
|
||||
/* Check whether Extended-Length applies and is in bounds */
|
||||
|
Loading…
Reference in New Issue
Block a user