summaryrefslogtreecommitdiff
path: root/radsecproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'radsecproxy.h')
-rw-r--r--radsecproxy.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/radsecproxy.h b/radsecproxy.h
index f4c468d..b239a3e 100644
--- a/radsecproxy.h
+++ b/radsecproxy.h
@@ -88,11 +88,11 @@ struct clsrvconf {
uint8_t retryinterval;
uint8_t retrycount;
uint8_t certnamecheck;
- SSL_CTX *ssl_ctx;
struct rewrite *rewritein;
struct rewrite *rewriteout;
struct addrinfo *addrinfo;
uint8_t prefixlen;
+ struct tls *tlsconf;
struct list *clients;
struct server *servers;
};
@@ -131,8 +131,15 @@ struct realm {
struct tls {
char *name;
+ char *cacertfile;
+ char *cacertpath;
+ char *certfile;
+ char *certkeyfile;
+ char *certkeypwd;
+ uint8_t crlcheck;
+ uint32_t cacheexpiry;
+ uint32_t expiry;
SSL_CTX *ctx;
- int count;
};
struct attribute {