diff options
Diffstat (limited to 'bgpd/bgp_debug.h')
-rw-r--r-- | bgpd/bgp_debug.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bgpd/bgp_debug.h b/bgpd/bgp_debug.h index ce8547b0..2b9ca268 100644 --- a/bgpd/bgp_debug.h +++ b/bgpd/bgp_debug.h @@ -22,6 +22,7 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA #define _QUAGGA_BGP_DEBUG_H #include "bgp_attr.h" +#include "stdbool.h" /* sort of packet direction */ #define DUMP_ON 1 @@ -120,9 +121,11 @@ extern unsigned long term_bgp_debug_zebra; extern const char *bgp_type_str[]; extern int bgp_dump_attr (struct peer *, struct attr *, char *, size_t); -extern void bgp_notify_print (struct peer *, struct bgp_notify *, const char *); +extern void bgp_notify_print (struct peer* peer, bgp_notify notification); extern const struct message bgp_status_msg[]; extern const int bgp_status_msg_max; +extern const struct message bgp_peer_status_msg[]; +extern const int bgp_peer_status_msg_max; #endif /* _QUAGGA_BGP_DEBUG_H */ |