diff options
Diffstat (limited to 'dtls.c')
-rw-r--r-- | dtls.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -6,7 +6,6 @@ * copyright notice and this permission notice appear in all copies. */ -#ifdef RADPROT_DTLS #include <signal.h> #include <sys/socket.h> #include <netinet/in.h> @@ -27,12 +26,14 @@ #include <pthread.h> #include <openssl/ssl.h> #include <openssl/err.h> -#include "debug.h" #include "list.h" #include "hash.h" -#include "util.h" #include "radsecproxy.h" +#ifdef RADPROT_DTLS +#include "debug.h" +#include "util.h" + static void setprotoopts(struct commonprotoopts *opts); static char **getlistenerargs(); void *udpdtlsserverrd(void *arg); |