summaryrefslogtreecommitdiff
path: root/radsecproxy.h
diff options
context:
space:
mode:
authorvenaas <venaas>2008-09-16 15:10:11 +0000
committervenaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf>2008-09-16 15:10:11 +0000
commit5b259b9efe0902fb95228cf76e7d49eb2fb3c601 (patch)
tree83cbdad79e1bdb79e37d7ffd323ea3393f070e8e /radsecproxy.h
parent4c56742c9456d13d227a8a39a07dfabd6b77d3a7 (diff)
moved more stuff from rqout to rq
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@382 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.h')
-rw-r--r--radsecproxy.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/radsecproxy.h b/radsecproxy.h
index a4eabfc..5efe80b 100644
--- a/radsecproxy.h
+++ b/radsecproxy.h
@@ -46,6 +46,7 @@ struct request {
struct timeval created;
uint8_t refcount;
uint8_t *buf;
+ struct radmsg *msg;
struct client *from;
struct sockaddr_storage fromsa; /* used by udpservwr */
int fromudpsock; /* used by udpservwr */
@@ -56,12 +57,9 @@ struct request {
/* requests that our client will send */
struct rqout {
- pthread_mutex_t *lock; /* used when modifying buf/msg/rq */
- unsigned char *buf;
- struct radmsg *msg;
+ pthread_mutex_t *lock;
struct request *rq;
uint8_t tries;
- uint8_t received;
struct timeval expiry;
};