summaryrefslogtreecommitdiff
path: root/radsecproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'radsecproxy.h')
-rw-r--r--radsecproxy.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/radsecproxy.h b/radsecproxy.h
index 71b17bd..ca114c8 100644
--- a/radsecproxy.h
+++ b/radsecproxy.h
@@ -75,12 +75,17 @@ struct replyq {
struct clsrvconf {
char *name;
+ char *conftype;
char type; /* U for UDP, T for TLS */
char *host;
char *port;
char *secret;
+ char *tls;
+ char *matchcertattr;
regex_t *certcnregex;
regex_t *certuriregex;
+ char *confrewrite;
+ char *rewriteattr;
regex_t *rewriteattrregex;
char *rewriteattrreplacement;
char *dynamiclookupcommand;
@@ -130,7 +135,6 @@ struct realm {
struct tls {
char *name;
SSL_CTX *ctx;
- int count;
};
struct rewrite {
@@ -141,7 +145,6 @@ struct rewrite {
struct rewriteconf {
char *name;
struct rewrite *rewrite;
- int count;
};
#define RADLEN(x) ntohs(((uint16_t *)(x))[1])