From 88df24c1ae2b4acd53d234595c758b643372a4a7 Mon Sep 17 00:00:00 2001 From: venaas Date: Fri, 22 Jun 2007 13:29:31 +0000 Subject: moved to linked lists for replyqs, removed replyq size and count git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@152 e88ac4ed-0b26-0410-9574-a7f39faa03bf --- radsecproxy.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'radsecproxy.h') diff --git a/radsecproxy.h b/radsecproxy.h index 05050d9..004a269 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -67,11 +67,9 @@ struct reply { }; struct replyq { - struct reply *replies; - int count; - int size; - pthread_mutex_t count_mutex; - pthread_cond_t count_cond; + struct list *replies; + pthread_mutex_t mutex; + pthread_cond_t cond; }; struct clsrvconf { -- cgit v1.1