diff options
-rw-r--r-- | dtls.c | 1 | ||||
-rw-r--r-- | fticks.c | 1 | ||||
-rw-r--r-- | radsecproxy.c | 1 | ||||
-rw-r--r-- | radsecproxy.h | 5 | ||||
-rw-r--r-- | tcp.c | 3 | ||||
-rw-r--r-- | tls.c | 3 | ||||
-rw-r--r-- | tlscommon.c | 1 | ||||
-rw-r--r-- | udp.c | 3 |
8 files changed, 8 insertions, 10 deletions
@@ -26,7 +26,6 @@ #include <pthread.h> #include <openssl/ssl.h> #include <openssl/err.h> -#include "list.h" #include "hash.h" #include "radsecproxy.h" @@ -10,7 +10,6 @@ #include <regex.h> #include <pthread.h> #include <sys/time.h> -#include "list.h" #include "radsecproxy.h" #include "debug.h" diff --git a/radsecproxy.c b/radsecproxy.c index fdf3d81..93cd4a2 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -69,7 +69,6 @@ #include <openssl/err.h> #include <openssl/md5.h> #include "debug.h" -#include "list.h" #include "hash.h" #include "util.h" #include "hostport.h" diff --git a/radsecproxy.h b/radsecproxy.h index 3c80ee6..03ae54c 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -7,6 +7,11 @@ * copyright notice and this permission notice appear in all copies. */ +#include <sys/time.h> +#include <stdint.h> +#include <pthread.h> +#include <regex.h> +#include "list.h" #include "tlv11.h" #include "radmsg.h" #include "gconfig.h" @@ -24,9 +24,8 @@ #include <arpa/inet.h> #include <regex.h> #include <pthread.h> -#include "list.h" -#include "hostport.h" #include "radsecproxy.h" +#include "hostport.h" #ifdef RADPROT_TCP #include "debug.h" @@ -26,9 +26,8 @@ #include <pthread.h> #include <openssl/ssl.h> #include <openssl/err.h> -#include "list.h" -#include "hostport.h" #include "radsecproxy.h" +#include "hostport.h" #ifdef RADPROT_TLS #include "debug.h" diff --git a/tlscommon.c b/tlscommon.c index 203bc4b..eb2af8c 100644 --- a/tlscommon.c +++ b/tlscommon.c @@ -33,7 +33,6 @@ #include <openssl/md5.h> #include <openssl/x509v3.h> #include "debug.h" -#include "list.h" #include "hash.h" #include "util.h" #include "hostport.h" @@ -24,9 +24,8 @@ #include <arpa/inet.h> #include <regex.h> #include <pthread.h> -#include "list.h" -#include "hostport.h" #include "radsecproxy.h" +#include "hostport.h" #ifdef RADPROT_UDP #include "debug.h" |