diff options
author | venaas <venaas> | 2008-03-05 15:00:00 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-03-05 15:00:00 +0000 |
commit | 6ec43d7c0bb870685ad9d1d138a7348b805955c3 (patch) | |
tree | e6138dcac9656bd1497d74a052580bb550291d9e /radsecproxy.h | |
parent | 1225cb37a7f22156fae9998882bcd561376ae7f0 (diff) |
vendor attribute removal
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@222 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; }; |