Download raw body.
bgpd: add missing capa in log_capability()
Missed when I added CAPA_EXT_MSG. -- :wq Claudio Index: util.c =================================================================== RCS file: /cvs/src/usr.sbin/bgpd/util.c,v diff -u -p -r1.89 util.c --- util.c 21 Nov 2024 13:05:23 -0000 1.89 +++ util.c 7 Jan 2025 16:36:53 -0000 @@ -323,6 +323,8 @@ log_capability(uint8_t capa) return "Multiprotocol Extensions"; case CAPA_REFRESH: return "Route Refresh"; + case CAPA_EXT_MSG: + return "Extended Message"; case CAPA_ROLE: return "BGP Role"; case CAPA_RESTART:
bgpd: add missing capa in log_capability()