From: Job Snijders Date: Sat, 17 Feb 2024 10:49:22 +0000 (+0000) Subject: BGP: Add Error code for Send Hold Timer X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/b3c04ac09f030b714d8bee182d93a91d9a916ff1 BGP: Add Error code for Send Hold Timer https://datatracker.ietf.org/doc/html/draft-ietf-idr-bgp-sendholdtimer https://www.iana.org/assignments/bgp-parameters/bgp-parameters.xhtml#bgp-parameters-3 --- diff --git a/print-bgp.c b/print-bgp.c index 55857c69..6c5be544 100644 --- a/print-bgp.c +++ b/print-bgp.c @@ -289,6 +289,7 @@ static const struct tok bgp_capcode_values[] = { #define BGP_NOTIFY_MAJOR_FSM 5 #define BGP_NOTIFY_MAJOR_CEASE 6 #define BGP_NOTIFY_MAJOR_ROUTEREFRESH 7 +#define BGP_NOTIFY_MAJOR_SENDHOLDTIME 8 static const struct tok bgp_notify_major_values[] = { { BGP_NOTIFY_MAJOR_MSG, "Message Header Error"}, @@ -298,6 +299,7 @@ static const struct tok bgp_notify_major_values[] = { { BGP_NOTIFY_MAJOR_FSM, "Finite State Machine Error"}, { BGP_NOTIFY_MAJOR_CEASE, "Cease"}, { BGP_NOTIFY_MAJOR_ROUTEREFRESH, "ROUTE-REFRESH Message Error"}, + { BGP_NOTIFY_MAJOR_SENDHOLDTIME, "Send Hold Timer Expired"}, { 0, NULL} };