From 6ee8ea1cf9b577e236e0f93265ee1e2cd0d7af31 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Fri, 9 Jun 2017 19:34:29 +0000 Subject: [PATCH] bgpd: fix includes for bgp_keeaplives.c Signed-off-by: Quentin Young --- bgpd/bgp_keepalives.c | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/bgpd/bgp_keepalives.c b/bgpd/bgp_keepalives.c index 463188f0e6..4de59da104 100644 --- a/bgpd/bgp_keepalives.c +++ b/bgpd/bgp_keepalives.c @@ -20,22 +20,21 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +/* clang-format off */ #include -#include -#include +#include // for pthread_mutex_lock, pthread_mutex_unlock -#include "thread.h" -#include "log.h" -#include "vty.h" -#include "monotime.h" -#include "hash.h" -#include "frr_pthread.h" +#include "frr_pthread.h" // for frr_pthread +#include "hash.h" // for hash, hash_clean, hash_create_size... +#include "log.h" // for zlog_debug +#include "memory.h" // for MTYPE_TMP, XFREE, XCALLOC, XMALLOC +#include "monotime.h" // for monotime, monotime_since -#include "bgpd/bgpd.h" +#include "bgpd/bgpd.h" // for peer, PEER_THREAD_KEEPALIVES_ON, peer... +#include "bgpd/bgp_debug.h" // for bgp_debug_neighbor_events +#include "bgpd/bgp_packet.h" // for bgp_keepalive_send #include "bgpd/bgp_keepalives.h" -#include "bgpd/bgp_debug.h" -#include "bgpd/bgp_attr.h" -#include "bgpd/bgp_packet.h" +/* clang-format on */ /** * Peer KeepAlive Timer. -- 2.39.5