diff options
author | venaas <venaas> | 2008-09-08 12:23:17 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-09-08 12:23:17 +0000 |
commit | 496586f75744b32bb94e6a91e16990b29653885d (patch) | |
tree | ad9c6871d55a3200c448ef6dc1cc9da1f3da9dba /radsecproxy.h | |
parent | 1ec94d1e688da57d08893684fd8af395c39f6715 (diff) |
added addattribute support to rewrite
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/branches/release-1.1@368 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index 3e7e91c..8f3bdb6 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -135,9 +135,16 @@ struct tls { int count; }; +struct attribute { + uint8_t t; + uint8_t l; + uint8_t *v; +}; + struct rewrite { uint8_t *removeattrs; uint32_t *removevendorattrs; + struct list *addattrs; }; struct rewriteconf { |