Home | History | Annotate | Download | only in mDNSCore

Lines Matching full:probecount

681 			LogMsg("SetNextAnnounceProbeTime: ProbeCount %d Next in %d %s", rr->ProbeCount, (rr->LastAPTime + rr->ThisAPInterval) - m->timenow, ARDisplayString(m, rr));
716 if (rr->ProbeCount)
842 rr->ProbeCount = DefaultProbeCountForRecordType(rr->resrec.RecordType);
918 rr->ProbeCount = 0;
1136 rr->ProbeCount = DefaultProbeCountForRecordType(rr->resrec.RecordType);
1257 rr->ProbeCount = 0;
1267 rr->ProbeCount = 0;
1287 // Setting ProbeCount to zero will cause SendQueries() to advance this record to
1290 rr->ProbeCount = 0;
1392 for (r2 = m->DuplicateRecords; r2; r2=r2->next) if (RecordIsLocalDuplicate(r2, rr)) r2->ProbeCount = 0xFF;
1417 dup->ProbeCount = rr->ProbeCount;
1590 if (r2->ProbeCount != 0xFF) r2 = r2->next;
3011 else if (ar->ProbeCount)
3015 LogSPS("SendQueries ARP Probe %d %s %s", ar->ProbeCount, InterfaceNameForID(m, ar->resrec.InterfaceID), ARDisplayString(m,ar));
3020 LogSPS("SendQueries NDP Probe %d %s %s", ar->ProbeCount, InterfaceNameForID(m, ar->resrec.InterfaceID), ARDisplayString(m,ar));
3031 // than DefaultProbeCountForTypeUnique. Here we detect that state and reset ar->ProbeCount back to the right value.
3032 if (ar->ProbeCount > DefaultProbeCountForTypeUnique)
3033 ar->ProbeCount = DefaultProbeCountForTypeUnique;
3034 ar->ProbeCount--;
3036 if (ar->ProbeCount == 0)
3039 // on our duplicate list which should similarly have their ProbeCount cleared to zero...
3043 r2->ProbeCount = 0;
3072 if (ar->resrec.RecordType == kDNSRecordTypeUnique && ar->ProbeCount == 0 && !ar->Acknowledged)
3117 mDNSBool ucast = (ar->ProbeCount >= DefaultProbeCountForTypeUnique-1) && m->CanReceiveUnicastOn5353;
3129 verbosedebugf("SendQueries: Put Question %##s (%s) probecount %d",
3130 ar->resrec.name->c, DNSTypeName(ar->resrec.rrtype), ar->ProbeCount);
5235 rr->ProbeCount = DefaultProbeCountForRecordType(rr->resrec.RecordType);
5619 LogMsg("ResolveSimultaneousProbe: %p Our Record %d %s %08lX %s", our->resrec.InterfaceID, our->ProbeCount, msg, our->resrec.rdatahash, ARDisplayString(m, our));
5627 our->ProbeCount = DefaultProbeCountForTypeUnique;
5637 LogMsg("ResolveSimultaneousProbe: %p Our Record %d ign: %08lX %s", our->resrec.InterfaceID, our->ProbeCount, our->resrec.rdatahash, ARDisplayString(m, our));
6732 // If we've just whacked this record's ProbeCount, don't need to do it again
6733 if (rr->ProbeCount > DefaultProbeCountForTypeUnique)
6735 else if (rr->ProbeCount == DefaultProbeCountForTypeUnique)
6745 // We set ProbeCount to one more than the usual value so we know we've already touched this record.
6749 rr->ProbeCount = DefaultProbeCountForTypeUnique + 1;
6757 LogMsg("mDNSCoreReceiveResponse: ProbeCount %d; will deregister %s", rr->ProbeCount, ARDisplayString(m, rr));
9548 rr->ProbeCount = DefaultProbeCountForRecordType(rr->resrec.RecordType);
10162 // To handle the second case, we reset ProbeCount, so we'll suppress our own answers for a while, to avoid
10170 rr->ProbeCount = DefaultProbeCountForTypeUnique;
10173 // still going to sleep, so we just reset rr->ProbeCount so we'll continue probing until it stops responding.