From 9ff6c8d83c7fee5f354d4d6ed4efc15bfc6bc7e1 Mon Sep 17 00:00:00 2001 From: Alexander Azimov Date: Thu, 11 Jul 2019 15:44:52 +0200 Subject: BGP: Compliance with RFC8203bis --- proto/bgp/bgp.c | 2 +- proto/bgp/packets.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'proto/bgp') diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index d4b056be..3d59a31b 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -1317,7 +1317,7 @@ bgp_shutdown(struct proto *P) if (message) { uint msg_len = strlen(message); - msg_len = MIN(msg_len, 128); + msg_len = MIN(msg_len, 255); /* Buffer will be freed automatically by protocol shutdown */ data = mb_alloc(p->p.pool, msg_len + 1); diff --git a/proto/bgp/packets.c b/proto/bgp/packets.c index 665a22c1..1f93cf56 100644 --- a/proto/bgp/packets.c +++ b/proto/bgp/packets.c @@ -1539,7 +1539,7 @@ bgp_handle_message(struct bgp_proto *p, byte *data, uint len, byte **bp) return 1; /* Handle proper message */ - if ((msg_len > 128) && (msg_len + 1 > len)) + if ((msg_len > 255) && (msg_len + 1 > len)) return 0; /* Some elementary cleanup */ -- cgit v1.2.3