diff options
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index 171c3fd..2736733 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -48,6 +48,7 @@ struct options { char **listenaccudp; char *sourceudp; char *sourcetcp; + char *sourcetls; char *logdestination; uint8_t loglevel; uint8_t loopprevention; @@ -175,6 +176,10 @@ struct protodefs { uint8_t retryintervaldefault; uint8_t retryintervalmax; void *(*listener)(void*); + char **srcaddrport; + int (*connecter)(struct server *, struct timeval *, int, char *); + void *(*clientreader)(void*); + int (*clientradput)(struct server *, unsigned char *); }; #define RADLEN(x) ntohs(((uint16_t *)(x))[1]) |