diff options
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index d1dcaef..a4eabfc 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -56,12 +56,13 @@ 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; + struct request *rq; uint8_t tries; uint8_t received; struct timeval expiry; - struct request *rq; }; /* replies that a server will send */ |