diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-01-26 17:59:46 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-01-26 18:00:42 +0900 |
commit | 7b1ed59ef2191c232752f0eb841f19b10ec0937a (patch) | |
tree | 6f578c1a0f487c636b3f05229f67f8da9cc3626a /packet/validate.go | |
parent | ad706a62aba6c98c1a0a5ca39759e37c774d9775 (diff) |
packet: fix the reggression of commit ad706a62aba6c98c1a0a5ca39759e37c774d9775
ignore EXTENDED
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'packet/validate.go')
-rw-r--r-- | packet/validate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packet/validate.go b/packet/validate.go index 20464574..9ca968b2 100644 --- a/packet/validate.go +++ b/packet/validate.go @@ -133,7 +133,7 @@ func ValidateFlags(t BGPAttrType, flags uint8) (bool, string) { // check flags are correct if f, ok := pathAttrFlags[t]; ok { - if f != flags { + if f != (flags & ^uint8(BGP_ATTR_FLAG_EXTENDED_LENGTH)) { eMsg := "flags are invalid. attribtue type : " + strconv.Itoa(int(t)) return false, eMsg } |