diff options
author | venaas <venaas> | 2007-09-18 15:06:15 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2007-09-18 15:06:15 +0000 |
commit | 7dd66d70b0470b76b44eb5416f143f080789b27a (patch) | |
tree | 80bd1a2320b4e32b19193059693fce3343c90437 /radsecproxy.h | |
parent | 64564a6f7d0d84722f3300173a0d0bbb238dafd4 (diff) |
now changed to allow prefix/prefixlen for host
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@159 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index 2516074..5342363 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -82,7 +82,8 @@ struct clsrvconf { uint8_t statusserver; SSL_CTX *ssl_ctx; struct addrinfo *addrinfo; - struct client *clients; + uint8_t prefixlen; + struct list *clients; struct server *servers; }; @@ -90,6 +91,7 @@ struct client { struct clsrvconf *conf; SSL *ssl; struct replyq *replyq; + struct client *next; }; struct server { |