diff options
author | venaas <venaas> | 2008-07-23 07:09:07 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-07-23 07:09:07 +0000 |
commit | fa66ef5ae8812b08b8f252cdd7c48720922faf04 (patch) | |
tree | 4c18821d505dcfb4edff0fcb9e2f91e7b851547b /radsecproxy.h | |
parent | aa91507374c30918e1c784e250a1372d7a728785 (diff) |
added tcp server support, improved some log messages, fixed bug when trying to free requests for dynamic server template
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@321 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index 2048354..171c3fd 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -115,6 +115,7 @@ struct clsrvconf { struct client { struct clsrvconf *conf; + int s; /* for tcp */ SSL *ssl; struct replyq *replyq; }; @@ -173,6 +174,7 @@ struct protodefs { uint8_t retrycountmax; uint8_t retryintervaldefault; uint8_t retryintervalmax; + void *(*listener)(void*); }; #define RADLEN(x) ntohs(((uint16_t *)(x))[1]) |