diff options
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]) |