Searched refs:req_list (Results 1 - 2 of 2) sorted by relevance

/forgerock/web-agents-v4/source/varnish/
H A Dagent.c184 struct request *req_list, *req_list_entry; local
187 req_list = pthread_getspecific(thread_key);
188 if (req_list == NULL) {
191 req_list = (struct request *) calloc(1, sizeof (struct request));
192 if (req_list == NULL) {
196 req_list->ctx = ctx;
197 req_list->xid = ctx->req->sp->vxid;
198 req_list->inauth = 1;
199 pthread_setspecific(thread_key, req_list);
200 return req_list;
[all...]
/forgerock/web-agents-v4/source/varnish3/
H A Dagent.c190 struct request *req_list, *req_list_entry; local
193 req_list = pthread_getspecific(thread_key);
194 if (req_list == NULL) {
197 req_list = (struct request *) calloc(1, sizeof (struct request));
198 if (req_list == NULL) {
202 req_list->ctx = ctx;
203 req_list->xid = ctx->xid;
204 req_list->inauth = 1;
205 pthread_setspecific(thread_key, req_list);
206 return req_list;
[all...]

Completed in 231 milliseconds