summaryrefslogtreecommitdiff
path: root/dtls.c
diff options
context:
space:
mode:
Diffstat (limited to 'dtls.c')
-rw-r--r--dtls.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/dtls.c b/dtls.c
index 0fdbc3a..49519ec 100644
--- a/dtls.c
+++ b/dtls.c
@@ -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);