Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:SuppressSending

741 			// except... don't expect to be able to send before the m->SuppressSending timer fires
742 if (m->SuppressSending && m->SuppressProbes - m->SuppressSending < 0)
743 m->SuppressProbes = NonZeroTime(m->SuppressSending);
747 LogMsg("InitializeLastAPTime ERROR m->SuppressProbes %d m->NextScheduledProbe %d m->NextScheduledQuery %d m->SuppressSending %d %d",
751 m->SuppressSending,
752 m->SuppressSending - m->timenow);
2424 if (!m->SuppressSending) m->SuppressSending = NonZeroTime(m->timenow + (mDNSPlatformOneSecond+9)/10);
3201 if (!m->SuppressSending) m->SuppressSending = NonZeroTime(m->timenow + (mDNSPlatformOneSecond+9)/10);
4474 if (m->mDNSPlatformStatus == mStatus_NoError && (m->SuppressSending == 0 || m->timenow - m->SuppressSending >= 0))
4482 m->SuppressSending = 0;
6087 if (delayresponse && (!m->SuppressSending || (m->SuppressSending - m->timenow) < (delayresponse + 49) / 50))
6090 mDNSs32 oldss = m->SuppressSending;
6092 LogMsg("Current SuppressSending delay%5ld; require%5ld", m->SuppressSending - m->timenow, (delayresponse + 49) / 50);
6107 m->SuppressSending = m->timenow + (delayresponse + (mDNSs32)mDNSRandom((mDNSu32)mDNSPlatformOneSecond*5) + 49) / 50;
6108 if (m->SuppressSending == 0) m->SuppressSending = 1;
6111 LogMsg("Set SuppressSending to %5ld", m->SuppressSending - m->timenow);
9500 // We must *never* set m->SuppressSending to more than that (or set it repeatedly in a way
9501 // that causes mDNSResponder to remain in a prolonged state of SuppressSending, because
9504 // See <rdar://problem/4073853> mDNS: m->SuppressSending set too enthusiastically
9505 if (!m->SuppressSending) m->SuppressSending = m->timenow + (mDNSs32)mDNSRandom((mDNSu32)InitialQuestionInterval);
10650 m->SuppressSending = timenow;
11414 m->SuppressSending = 0;