Home | History | Annotate | Download | only in mDNSShared

Lines Matching refs:replies

152 	int no_reply;					// don't send asynchronous replies to client
155 struct reply_state *replies; // corresponding (active) reply list
237 struct reply_state *next; // If there are multiple unsent replies
321 // Now, if this request_state is not subordinate to some other primary, close file descriptor and discard replies
329 while (req->replies) // free pending replies
331 reply_state *ptr = req->replies;
332 req->replies = req->replies->next;
390 reply_state **ptr = &r->replies;
949 if (tmp->replies) LogMsg("connection_termination ERROR How can subordinate req %p %d have replies queued?", tmp, tmp->sd);
4579 if (req->primary && req->replies)
4580 LogMemCorruption("UDS request list: Subordinate request %p/%d/%p should not have replies (%p)",
4581 req, req->sd, req->primary && req->replies);
4590 for (rep = req->replies; rep; rep=rep->next)
4592 LogMemCorruption("UDS req->replies: %p is garbage", rep);
4639 reply_state *const rep = req->replies; // Send the first waiting reply
4686 while (r->replies) // Send queued replies
4689 if (r->replies->next) r->replies->rhdr->flags |= dnssd_htonl(kDNSServiceFlagsMoreComing);
4693 reply_state *fptr = r->replies;
4694 r->replies = r->replies->next;
4709 if (r->replies) // If we failed to send everything, check our time_blocked timer
4718 struct reply_state *x = r->replies;