diff options
author | venaas <venaas> | 2007-09-19 08:50:46 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2007-09-19 08:50:46 +0000 |
commit | fefa1e9fc2abc311b3a53e29b871bc53b0a98b63 (patch) | |
tree | 7181e2c741374d8b14d76e8f13d8c5192909321b /radsecproxy.h | |
parent | c0206480f4ca51770abbd138cddd919d5d7ec166 (diff) |
allow multiple servers for a realm, so far only first will be used
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@161 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index 5342363..540db32 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -40,6 +40,7 @@ #define CONF_STR 1 #define CONF_CBK 2 +#define CONF_MSTR 3 struct options { char *listenudp; @@ -113,7 +114,7 @@ struct realm { char *name; char *message; regex_t regex; - struct clsrvconf *srvconf; + struct list *srvconfs; }; struct tls { |