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 | 74ba8cbc3a91ba4fe3e73da9bb27959f73380265 (patch) | |
tree | d6a7391e8947f1c0e89996f9f451b175c5e301a8 /radsecproxy.h | |
parent | 03f17173b68a6a84f4020c96905fe7af13633339 (diff) |
added addattribute support to rewrite
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@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 ea154f2..11eebf8 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -167,9 +167,16 @@ struct tls { SSL_CTX *dtlsctx; }; +struct attribute { + uint8_t t; + uint8_t l; + uint8_t *v; +}; + struct rewrite { uint8_t *removeattrs; uint32_t *removevendorattrs; + struct list *addattrs; }; struct protodefs { |