Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:mDNS_StopQuery_internal

421 		mDNS_StopQuery_internal(m, q);								// Stop old query
3805 // that they're still the same. If m->NewQuestions has changed (because mDNS_StopQuery_internal
3812 // Fortunately mDNS_StopQuery_internal auto-advances both m->CurrentQuestion *AND* m->NewQuestions when
4646 // points to the "next" question which will be automatically advanced in mDNS_StopQuery_internal
4705 mDNS_StopQuery_internal(m, q);
7700 question->state = 0; // Must zero question->state, or mDNS_StopQuery_internal will clean up and cancel our LLQ from the server
8233 // points to the "next" question which will be automatically advanced in mDNS_StopQuery_internal
8297 mDNS_StopQuery_internal(m, q);
8528 // If it was already stopped, mDNS_StopQuery_internal would have set q->ThisQInterval to -1 and should not
8532 mDNS_StopQuery_internal(m, &nta->question);
8539 mDNSexport mStatus mDNS_StopQuery_internal(mDNS *const m, DNSQuestion *const question)
8546 //LogInfo("mDNS_StopQuery_internal %##s (%s)", question->qname.c, DNSTypeName(question->qtype));
8556 LogMsg("mDNS_StopQuery_internal: Question %##s (%s) not found in active list",
8582 debugf("mDNS_StopQuery_internal: Updating CRActiveQuestion to %p for cache record %s, Original question CurrentAnswers %d, new question "
8593 debugf("mDNS_StopQuery_internal: Just deleted the currently active question: %##s (%s)",
8600 debugf("mDNS_StopQuery_internal: Just deleted a new question that wasn't even answered yet: %##s (%s)",
8609 LogMsg("mDNS_StopQuery_internal: Just deleted the current restart question: %##s (%s)",
8617 // LogMsg("mDNS_StopQuery_internal: Question %##s (%s) removed", question->qname.c, DNSTypeName(question->qtype));
8682 status = mDNS_StopQuery_internal(m, question);
8700 status = mDNS_StopQuery_internal(m, question);
9030 // We use mDNS_StopQuery_internal here because we're already holding the lock
9031 if (q->qSRV.ThisQInterval >= 0) mDNS_StopQuery_internal(m, &q->qSRV);
9032 if (q->qTXT.ThisQInterval >= 0) mDNS_StopQuery_internal(m, &q->qTXT);
9033 if (q->qAv4.ThisQInterval >= 0) mDNS_StopQuery_internal(m, &q->qAv4);
9034 if (q->qAv6.ThisQInterval >= 0) mDNS_StopQuery_internal(m, &q->qAv6);
9405 mDNS_StopQuery_internal(m, &set->NetWakeBrowse);
9406 for (i=0; i<3; i++) if (set->NetWakeResolve[i].ThisQInterval >= 0) mDNS_StopQuery_internal(m, &set->NetWakeResolve[i]);