summaryrefslogtreecommitdiff
path: root/radsecproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'radsecproxy.h')
-rw-r--r--radsecproxy.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/radsecproxy.h b/radsecproxy.h
index 2ba6153..9ad79d3 100644
--- a/radsecproxy.h
+++ b/radsecproxy.h
@@ -83,6 +83,7 @@ struct clsrvconf {
regex_t *certuriregex;
regex_t *rewriteattrregex;
char *rewriteattrreplacement;
+ char *dynamiclookupcommand;
uint8_t statusserver;
uint8_t certnamecheck;
SSL_CTX *ssl_ctx;
@@ -97,7 +98,6 @@ struct client {
struct clsrvconf *conf;
SSL *ssl;
struct replyq *replyq;
- struct client *next;
};
struct server {
@@ -120,6 +120,8 @@ struct realm {
char *name;
char *message;
regex_t regex;
+ pthread_mutex_t subrealms_mutex;
+ struct list *subrealms;
struct list *srvconfs;
struct list *accsrvconfs;
};