diff options
author | venaas <venaas> | 2008-03-05 14:55:17 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-03-05 14:55:17 +0000 |
commit | 7a070897b7ec293e71c02a0e159b5188ab656405 (patch) | |
tree | 3a565b0897462ff93aadd362ea8e000b36df4c4b /radsecproxy.h | |
parent | 873f1aaf3d3122014a70cc19edac772665dca65b (diff) |
1.1 vendor attribute removal
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/branches/release-1.1@221 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index 9400a6f..666514b 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -84,7 +84,7 @@ struct clsrvconf { char *rewriteattrreplacement; uint8_t statusserver; SSL_CTX *ssl_ctx; - uint8_t *removeattrs; + struct rewrite *rewrite; struct addrinfo *addrinfo; uint8_t prefixlen; struct list *clients; @@ -128,8 +128,13 @@ struct tls { }; struct rewrite { - char *name; uint8_t *removeattrs; + uint32_t *removevendorattrs; +}; + +struct rewriteconf { + char *name; + struct rewrite *rewrite; int count; }; |