diff options
author | Job Snijders <job@cvs.openbsd.org> | 2024-02-17 14:53:30 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2024-02-17 14:53:30 +0000 |
commit | 94e423a7df2cff47273a043eb9ab6c32f39a35c6 (patch) | |
tree | 1a47aa2ef20dec0e7770f7432bdc3ad077b82516 | |
parent | dc1cd94efd424552415a6a9ee271d405a2176d60 (diff) |
Add 'Send Hold Timer expired' BGP Error code
OK deraadt@
-rw-r--r-- | usr.sbin/tcpdump/print-bgp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/tcpdump/print-bgp.c b/usr.sbin/tcpdump/print-bgp.c index bac67ea1b3a..a45d14dc3eb 100644 --- a/usr.sbin/tcpdump/print-bgp.c +++ b/usr.sbin/tcpdump/print-bgp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print-bgp.c,v 1.32 2022/05/25 16:21:11 claudio Exp $ */ +/* $OpenBSD: print-bgp.c,v 1.33 2024/02/17 14:53:29 job Exp $ */ /* * Copyright (C) 1999 WIDE Project. @@ -211,6 +211,7 @@ static const char *bgpnotify_major[] = { "OPEN Message Error", "UPDATE Message Error", "Hold Timer Expired", "Finite State Machine Error", "Cease", "ROUTE_REFRESH Message Error", + "Send Hold Timer Expired", }; #define bgp_notify_major(x) \ num_or_str(bgpnotify_major, \ |