From e645dc3562d525a74e65d32fb3f9507fad8635ab Mon Sep 17 00:00:00 2001 From: William Robinet Date: Thu, 27 Aug 2020 16:39:01 +0200 Subject: [PATCH] Fix build warnings for missing prototypes --- base/tcpconn.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/base/tcpconn.h b/base/tcpconn.h index a0a4a4e..957dce9 100644 --- a/base/tcpconn.h +++ b/base/tcpconn.h @@ -100,6 +100,9 @@ int tcp_create_conn PROTO_LIST((tcp_conn **connp, int tcp_destroy_conn PROTO_LIST((tcp_conn *conn)); int free_tcp_segment_queue PROTO_LIST((segment *seg)); int copy_tcp_segment_queue PROTO_LIST((segment **out,segment *in)); - + +int clean_old_conn(void); +int destroy_all_conn(void); + #endif