From e0749025f259754aa031d997457a308686136909 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Sat, 19 Feb 2011 18:55:51 +0100 Subject: Improve protocol robustness and invoke user callbacks. All aborts are removed, as well as all asserts which aren't programming errors. When an invalid packet is received, the connection is closed, as per draft-ietf-radext-tcp-transport-08 (2.6.4). Use new rs_debug() macro rather than fprintf() for debug printouts. Coding style overhaul. --- lib/radsec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/radsec.c') diff --git a/lib/radsec.c b/lib/radsec.c index bc06894..16a554f 100644 --- a/lib/radsec.c +++ b/lib/radsec.c @@ -16,7 +16,7 @@ #include #include #include -#if defined RS_ENABLE_TLS +#if defined (RS_ENABLE_TLS) #include #include "rsp_list.h" #include "../radsecproxy.h" @@ -59,7 +59,7 @@ rs_context_create(struct rs_context **ctx, const char *dict) free (buf1); free (buf2); -#if defined RS_ENABLE_TLS +#if defined (RS_ENABLE_TLS) ssl_init (); #endif #if defined (DEBUG) -- cgit v1.1