diff options
Diffstat (limited to 'radsecproxy.h')
-rw-r--r-- | radsecproxy.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/radsecproxy.h b/radsecproxy.h index 21c02ec..4be2274 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -44,7 +44,7 @@ struct options { struct request { struct timeval created; - uint8_t refcount; + uint32_t refcount; uint8_t *buf, *replybuf; struct radmsg *msg; struct client *from; @@ -138,7 +138,9 @@ struct realm { char *message; uint8_t accresp; regex_t regex; - pthread_mutex_t subrealms_mutex; + uint32_t refcount; + pthread_mutex_t mutex; + struct realm *parent; struct list *subrealms; struct list *srvconfs; struct list *accsrvconfs; |