Skip to content

Commit

Permalink
Make radsecproxy.h self-sustaining.
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Nordberg committed Sep 26, 2011
1 parent 98c6d48 commit 6674382
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion dtls.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
#include <pthread.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include "list.h"
#include "hash.h"
#include "radsecproxy.h"

Expand Down
1 change: 0 additions & 1 deletion fticks.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
#include <regex.h>
#include <pthread.h>
#include <sys/time.h>
#include "list.h"
#include "radsecproxy.h"
#include "debug.h"

Expand Down
1 change: 0 additions & 1 deletion radsecproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions radsecproxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion tlscommon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions udp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6674382

Please sign in to comment.