diff options
Diffstat (limited to 'bgpd/bgp_msg_write.h')
-rw-r--r-- | bgpd/bgp_msg_write.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bgpd/bgp_msg_write.h b/bgpd/bgp_msg_write.h index 5355ed70..77bfc1f2 100644 --- a/bgpd/bgp_msg_write.h +++ b/bgpd/bgp_msg_write.h @@ -25,6 +25,7 @@ #define _QUAGGA_BGP_MSG_WRITE_H #include <stdint.h> +#include <stdbool.h> #include "bgpd/bgp_common.h" #include "bgpd/bgp_connection.h" @@ -38,7 +39,7 @@ extern int bgp_msg_write_notification(bgp_connection connection, bgp_notify notification) ; extern int -bgp_msg_send_keepalive(bgp_connection connection) ; +bgp_msg_send_keepalive(bgp_connection connection, bool must_send) ; extern int bgp_msg_send_open(bgp_connection connection, bgp_open_state open_state) ; |