• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/mDNSResponder-561.1.1/mDNSCore/

Lines Matching refs:timenow

793         if ((rr->LastAPTime + rr->ThisAPInterval) - m->timenow > mDNSPlatformOneSecond * 10)
795 LogMsg("SetNextAnnounceProbeTime: ProbeCount %d Next in %d %s", rr->ProbeCount, (rr->LastAPTime + rr->ThisAPInterval) - m->timenow, ARDisplayString(m, rr));
796 LogMsg("SetNextAnnounceProbeTime: m->SuppressProbes %d m->timenow %d diff %d", m->SuppressProbes, m->timenow, m->SuppressProbes - m->timenow);
804 if (m->NextScheduledProbe - m->timenow < 0)
805 m->NextScheduledProbe = m->timenow;
833 if (m->SuppressProbes == 0 || m->SuppressProbes - m->timenow < 0)
841 m->SuppressProbes = NonZeroTime(m->timenow + DefaultProbeIntervalForTypeUnique/2 + mDNSRandom(DefaultProbeIntervalForTypeUnique/2));
846 if (m->SuppressProbes - m->timenow < 0) // Make sure we don't set m->SuppressProbes excessively in the past
847 m->SuppressProbes = m->timenow;
852 if (m->SuppressProbes - m->timenow < 0) // Make sure we don't set m->SuppressProbes excessively in the past
853 m->SuppressProbes = m->timenow;
859 if (m->SuppressProbes - m->timenow > mDNSPlatformOneSecond * 8)
862 m->SuppressProbes - m->timenow,
863 m->NextScheduledProbe - m->timenow,
864 m->NextScheduledQuery - m->timenow,
866 m->SuppressSending - m->timenow);
867 m->SuppressProbes = NonZeroTime(m->timenow + DefaultProbeIntervalForTypeUnique/2 + mDNSRandom(DefaultProbeIntervalForTypeUnique/2));
872 else if (m->SuppressProbes && m->SuppressProbes - m->timenow >= 0)
875 rr->LastAPTime = m->timenow - rr->ThisAPInterval;
884 rr->LastAPTime = m->timenow;
888 rr->LastMCTime = m->timenow;
1029 rr->LastAPTime = m->timenow - rr->ThisAPInterval;
1505 m->ProbeFailTime = m->timenow;
1516 m->SuppressProbes = NonZeroTime(m->timenow + mDNSPlatformOneSecond * 5);
1717 rr->LastAPTime = m->timenow - rr->ThisAPInterval;
1719 if (m->NextScheduledResponse - (m->timenow + mDNSPlatformOneSecond/10) >= 0)
1720 m->NextScheduledResponse = (m->timenow + mDNSPlatformOneSecond/10);
2334 m->NextScheduledResponse = m->timenow + 0x78000000;
2361 while (rr->NextUpdateCredit && m->timenow - rr->NextUpdateCredit >= 0) GrantUpdateCredit(rr);
2362 if (TimeToAnnounceThisRecord(rr, m->timenow))
2386 r2->LastAPTime = m->timenow;
2400 rr->LastAPTime = m->timenow;
2431 TimeToAnnounceThisRecord(rr, m->timenow + rr->ThisAPInterval/2) &&
2495 rr->LastMCTime = m->timenow;
2498 if (TimeToAnnounceThisRecord(rr, m->timenow + rr->ThisAPInterval/2))
2503 rr->LastAPTime = m->timenow;
2511 rr->LastMCTime = m->timenow;
2588 else if (rr->LastAPTime == m->timenow) numAnnounce++;else numAnswer++;
2658 if (a->LastMCTime == m->timenow &&
2684 rr->LastMCTime = m->timenow;
2793 if (!m->SuppressSending) m->SuppressSending = NonZeroTime(m->timenow + (mDNSPlatformOneSecond+9)/10);
2846 verbosedebugf("SendResponses: Next in %ld ticks", m->NextScheduledResponse - m->timenow);
2893 (rr->NextRequiredQuery - m->timenow) / mDNSPlatformOneSecond, CacheCheckGracePeriod(rr), CRDisplayString(m,rr));
2911 if (RRExpireTime(rr) - m->timenow > (mDNSs32)((interval * 4) / 3))
2918 rr->TimeRcvd = m->timenow - (mDNSs32)interval * 3;
2923 RRExpireTime(rr) - m->timenow, CRDisplayString(m, rr), rr->CRActiveQuestion);
2957 rr->TimeRcvd + TicksTTL(rr)/2 - m->timenow > // and its half-way-to-expiry time is at least 1 second away
2987 if (ucast) q->ExpectUnicastResp = NonZeroTime(m->timenow);
2995 rr->LastUnansweredTime = m->timenow;
3217 if (TimeToSendThisQuestion(q, m->timenow + q->ThisQInterval/10))
3221 if (TimeToSendThisQuestion(q, m->timenow + q->ThisQInterval/2))
3231 rr->TimeRcvd + TicksTTL(rr)/2 - m->timenow >= 0 && // and it is less than half-way to expiry
3232 rr->NextRequiredQuery - (m->timenow + q->ThisQInterval) > 0) // and we'll ask at least once again before NextRequiredQuery
3277 if (m->timenow + TicksTTL(cr)/50 - cr->NextRequiredQuery >= 0)
3281 ExpireDupSuppressInfoOnInterface(q->DupSuppress, m->timenow - TicksTTL(cr)/20, cr->resrec.InterfaceID);
3290 q->LastQTime = m->timenow - q->ThisQInterval;
3323 if (q->Target.type && (q->SendQNow || TimeToSendThisQuestion(q, m->timenow)))
3339 q->LastQTime = m->timenow;
3340 q->LastQTxTime = m->timenow;
3343 q->ExpectUnicastResp = NonZeroTime(m->timenow);
3345 else if (mDNSOpaque16IsZero(q->TargetQID) && !q->Target.type && TimeToSendThisQuestion(q, m->timenow))
3347 //LogInfo("Time to send %##s (%s) %d", q->qname.c, DNSTypeName(q->qtype), m->timenow - NextQSendTime(q));
3368 // which causes NextScheduledQuery to get (incorrectly) set to m->timenow. Setting it here is the right place, because the very
3370 m->NextScheduledQuery = m->timenow + 0x78000000;
3379 if (m->timenow - (q->LastQTime + (q->ThisQInterval/2)) >= 0)
3392 q->LastQTime = m->timenow;
3431 q->LastQTime = m->timenow;
3436 ExpireDupSuppressInfo(q->DupSuppress, m->timenow - q->ThisQInterval/2);
3438 q->LastQTxTime = m->timenow;
3449 m->NextScheduledProbe = m->timenow + 0x78000000;
3461 if (m->timenow - (ar->LastAPTime + ar->ThisAPInterval) < 0)
3484 ar->LastAPTime = m->timenow;
3517 ar->LastAPTime = m->timenow - DefaultAnnounceIntervalForTypeUnique;
3625 mDNSu32 SecsSinceRcvd = ((mDNSu32)(m->timenow - ka->TimeRcvd)) / mDNSPlatformOneSecond;
3726 if (!m->SuppressSending) m->SuppressSending = NonZeroTime(m->timenow + (mDNSPlatformOneSecond+9)/10);
3763 if (m->timenow + TicksTTL(cr)/50 - cr->NextRequiredQuery >= 0)
3836 q->LastQTime = m->timenow;
3837 q->LastQTxTime = m->timenow;
3895 if (!q->TimeoutQuestion || rr->resrec.RecordType != kDNSRecordTypePacketNegative || (m->timenow - q->StopTime < 0))
3903 rr->LastUsed = m->timenow;
4003 const mDNSs32 threshhold = m->timenow + mDNSPlatformOneSecond; // See if there are any records expiring within one second
4004 const mDNSs32 start = m->timenow - 0x10000000;
4042 if (m->timenow - (rr->TimeRcvd + ((mDNSs32)uTTL * mDNSPlatformOneSecond)) >= 0)
4045 CRDisplayString(m, rr), rr->resrec.rroriginalttl, uTTL, (m->timenow - rr->TimeRcvd)/mDNSPlatformOneSecond);
4090 q->ThisQInterval > InitialQuestionInterval * QuestionIntervalStep3 && m->timenow - q->LastQTxTime < mDNSPlatformOneSecond)
4094 q->LastQTime = m->timenow - InitialQuestionInterval + (mDNSs32)mDNSRandom((mDNSu32)mDNSPlatformOneSecond*4);
4215 q->LastQTime = m->timenow - q->ThisQInterval;
4352 if (m->timenow - event >= 0) // If expired, delete it
4357 m->timenow - rr->TimeRcvd, rr->resrec.rroriginalttl, rr->CRActiveQuestion, CRDisplayString(m, rr));
4371 q->LastQTime = m->timenow - q->ThisQInterval;
4382 if (rr->DelayDelivery && rr->DelayDelivery - m->timenow > 0)
4389 if (m->timenow - rr->NextRequiredQuery < 0) // If not yet time for next query
4393 // Set NextScheduledQuery to timenow so that SendQueries() will run.
4395 m->NextScheduledQuery = m->timenow;
4398 event = m->timenow + 0x3FFFFFFF;
4403 (event - m->timenow) / mDNSPlatformOneSecond, CacheCheckGracePeriod(rr), CRDisplayString(m, rr));
4601 mDNSu32 SecsSinceRcvd = ((mDNSu32)(m->timenow - rr->TimeRcvd)) / mDNSPlatformOneSecond;
4605 rr->resrec.rroriginalttl, SecsSinceRcvd, CRDisplayString(m, rr), m->timenow, rr->TimeRcvd);
4645 q->LastQTime = m->timenow - q->ThisQInterval;
4864 rr->TimeRcvd = m->timenow - mDNSPlatformOneSecond * 60;
4876 LogMsg("mDNS_TimeNow called while holding mDNS lock. This is incorrect. Code protected by lock should just use m->timenow.");
4877 if (!m->timenow) LogMsg("mDNS_TimeNow: m->mDNS_busy is %ld but m->timenow not set", m->mDNS_busy);
4880 if (m->timenow) time = m->timenow;
4904 if (m->SPSSocket && m->timenow - rr->TimeExpire < 0) // If proxy record not expired yet, update m->NextScheduledSPS
4951 m->NextScheduledStopTime = m->timenow + 0x3FFFFFFF;
4964 if (m->timenow - q->StopTime >= 0)
4966 LogInfo("TimeoutQuestions: question %p %##s timed out, time %d", q, q->qname.c, m->timenow - q->StopTime);
5000 mDNS_Lock(m); // Must grab lock before trying to read m->timenow
5006 if (m->timenow - m->NextScheduledEvent >= 0)
5023 if (m->SuppressProbes && m->timenow - m->SuppressProbes >= 0) m->SuppressProbes = 0;
5026 if (m->NumFailedProbes && m->timenow - m->ProbeFailTime >= mDNSPlatformOneSecond * 10) m->NumFailedProbes = 0;
5029 if (m->rrcache_size && m->timenow - m->NextCacheCheck >= 0)
5032 m->NextCacheCheck = m->timenow + 0x3FFFFFFF;
5035 if (m->timenow - m->rrcache_nextcheck[slot] >= 0)
5038 m->rrcache_nextcheck[slot] = m->timenow + 0x3FFFFFFF;
5053 debugf("m->NextCacheCheck %4d checked, next in %d", numchecked, m->NextCacheCheck - m->timenow);
5056 if (m->timenow - m->NextScheduledSPS >= 0)
5058 m->NextScheduledSPS = m->timenow + 0x3FFFFFFF;
5067 if (m->timenow - m->NextScheduledKA >= 0)
5069 m->NextScheduledKA = m->timenow + 0x3FFFFFFF;
5074 if (m->AnnounceOwner && m->timenow - m->AnnounceOwner >= 0)
5079 if (m->DelaySleep && m->timenow - m->DelaySleep >= 0)
5092 if (m->NewQuestions->DelayAnswering && m->timenow - m->NewQuestions->DelayAnswering < 0) break;
5195 if (m->mDNSPlatformStatus == mStatus_NoError && (m->SuppressSending == 0 || m->timenow - m->SuppressSending >= 0))
5206 if (m->timenow - m->NextScheduledQuery >= 0 || m->timenow - m->NextScheduledProbe >= 0) SendQueries(m);
5207 if (m->timenow - m->NextScheduledQuery >= 0)
5211 m->timenow, m->NextScheduledQuery, m->timenow - m->NextScheduledQuery);
5212 m->NextScheduledQuery = m->timenow + mDNSPlatformOneSecond;
5214 if (ActiveQuestion(q) && m->timenow - NextQSendTime(q) >= 0)
5217 if (m->timenow - m->NextScheduledProbe >= 0)
5220 m->timenow, m->NextScheduledProbe, m->timenow - m->NextScheduledProbe);
5221 m->NextScheduledProbe = m->timenow + mDNSPlatformOneSecond;
5225 if (m->timenow - m->NextScheduledResponse >= 0) SendResponses(m);
5226 if (m->timenow - m->NextScheduledResponse >= 0)
5229 m->NextScheduledResponse = m->timenow + mDNSPlatformOneSecond;
5237 if (m->NextScheduledStopTime && m->timenow - m->NextScheduledStopTime >= 0) TimeoutQuestions(m);
5239 if (m->NextSRVUpdate && m->timenow - m->NextSRVUpdate >= 0) UpdateAllSRVRecords(m);
5240 if (m->timenow - m->NextScheduledNATOp >= 0) CheckNATMappings(m);
5241 if (m->timenow - m->NextuDNSEvent >= 0) uDNS_Tasks(m);
5344 question->LastQTime = m->timenow - question->ThisQInterval;
5493 q->LastQTime = m->timenow - q->ThisQInterval;
5495 ExpireDupSuppressInfo(q->DupSuppress, m->timenow);
5496 m->NextScheduledQuery = m->timenow;
5603 m->timenow - (rr->LastAPTime + rr->ThisAPInterval) < 0)
5757 intf->NextSPSAttemptTime = m->timenow + mDNSPlatformOneSecond;
5839 rr->LastAPTime = m->timenow;
5892 intf->NextSPSAttemptTime = m->timenow + mDNSPlatformOneSecond * 10; // If successful, update NextSPSAttemptTime
6030 // First make sure none of our interfaces' NextSPSAttemptTimes are inadvertently set to m->timenow + mDNSPlatformOneSecond * 10
6032 if (intf->NextSPSAttempt && intf->NextSPSAttemptTime == m->timenow + mDNSPlatformOneSecond * 10)
6037 if (!AuthRecord_uDNS(rr) && !mDNSOpaque16IsZero(rr->updateid) && m->timenow - (rr->LastAPTime + rr->ThisAPInterval) >= 0)
6054 if (intf->NextSPSAttempt && intf->NextSPSAttemptTime == m->timenow + mDNSPlatformOneSecond * 10 && intf->NextSPSAttempt < 8)
6245 m->NextScheduledSPRetry = m->timenow;
6321 intf->ifname, &intf->ip, NextQSendTime(&intf->NetWakeBrowse) - m->timenow, intf->NetWakeBrowse.ThisQInterval);
6328 intf->NextSPSAttemptTime = m->timenow + mDNSPlatformOneSecond;
6335 // Don't need to set m->NextScheduledSPRetry here because we already set "m->NextScheduledSPRetry = m->timenow" above
6417 LogSPS("%s (old state %d) at %ld", sleep ? "Sleeping" : "Waking", m->SleepState, m->timenow);
6440 LogSPS("mDNSCoreMachineSleep: Re-sleeping immediately after waking; will delay for %d ticks", m->DelaySleep - m->timenow);
6446 m->SleepLimit = NonZeroTime(m->timenow + mDNSPlatformOneSecond * 10);
6483 m->DelaySleep = NonZeroTime(m->timenow + mDNSPlatformOneSecond * 16);
6500 m->NextSRVUpdate = NonZeroTime(m->timenow + mDNSPlatformOneSecond);
6501 LogInfo("mDNSCoreMachineSleep waking: NextSRVUpdate in %d %d", m->NextSRVUpdate - m->timenow, m->timenow);
6531 const mDNSs32 remain = uTTL - (m->timenow - cr->TimeRcvd) / mDNSPlatformOneSecond;
6548 if (m->timenow - (cr->TimeRcvd + ((mDNSs32)uTTL * mDNSPlatformOneSecond)) >= 0)
6963 m->SuppressProbes = NonZeroTime(m->timenow + mDNSPlatformOneSecond);
7075 if (owner->seq != rr->WakeUp.seq || m->timenow - rr->TimeRcvd > mDNSPlatformOneSecond * 60)
7236 if (m->timenow - (rr->LastMCTime + mDNSPlatformOneSecond) >= 0 ||
7256 m->NextScheduledResponse = m->timenow;
7293 if (cr->MPUnansweredQ == 0 || m->timenow - cr->MPLastUnansweredQT >= mDNSPlatformOneSecond)
7299 cr->MPLastUnansweredQT = m->timenow;
7319 if (!q->Target.type && ActiveQuestion(q) && m->timenow - q->LastQTxTime > mDNSPlatformOneSecond / 4)
7388 LogMsg("Suppressed after%4d: %s", m->timenow - rr->ImmedAnswerMarkTime, ARDisplayString(m, rr));
7399 if (ourcacherr && ourcacherr->MPExpectingKA && m->timenow - ourcacherr->MPLastUnansweredQT < mDNSPlatformOneSecond)
7458 if (m->timenow - (rr->LastMCTime + TicksTTL(rr)/4) >= 0)
7492 rr->ImmedAnswerMarkTime = m->timenow;
7494 m->NextScheduledResponse = m->timenow;
7535 if (delayresponse && (!m->SuppressSending || (m->SuppressSending - m->timenow) < (delayresponse + 49) / 50))
7540 LogMsg("Current SuppressSending delay%5ld; require%5ld", m->SuppressSending - m->timenow, (delayresponse + 49) / 50);
7555 m->SuppressSending = m->timenow + (delayresponse + (mDNSs32)mDNSRandom((mDNSu32)mDNSPlatformOneSecond*5) + 49) / 50;
7559 LogMsg("Set SuppressSending to %5ld", m->SuppressSending - m->timenow);
7594 if (cr->UnansweredQueries == 0 || m->timenow - cr->LastUnansweredTime >= mDNSPlatformOneSecond)
7597 cr->LastUnansweredTime = m->timenow;
7612 if (RRExpireTime(cr) - m->timenow > 4 * mDNSPlatformOneSecond)
7631 mDNSu32 remain = (mDNSu32)(RRExpireTime(cr) - m->timenow) / 4;
7636 if (RRExpireTime(cr) - m->timenow > 4 * mDNSPlatformOneSecond)
7659 i = RecordDupSuppressInfo(q->DupSuppress, m->timenow, InterfaceID, srcaddr->type);
7789 if (SrcLocal && q->ExpectUnicastResp && (mDNSu32)(m->timenow - q->ExpectUnicastResp) < (mDNSu32)(mDNSPlatformOneSecond*2))
7998 rr->TimeRcvd = m->timenow;
8232 if (RRExpireTime(rr) - m->timenow > 0) break;
8540 rr->TimeRcvd = m->timenow;
8546 NextCacheCheckEvent(rr) - m->timenow, slot, m->rrcache_nextcheck[slot] - m->timenow, m->NextCacheCheck - m->timenow);
8567 rr->TimeRcvd = m->timenow;
8632 if (RRExpireTime(rr) - m->timenow > mDNSPlatformOneSecond)
8635 rr->TimeRcvd = m->timenow;
8839 rr->TimeRcvd = m->timenow - TicksTTL(rr) - 1;
9083 if (rr->ImmedAnswer == mDNSNULL) { rr->ImmedAnswer = InterfaceID; m->NextScheduledResponse = m->timenow; }
9084 else if (rr->ImmedAnswer != InterfaceID) { rr->ImmedAnswer = mDNSInterfaceMark; m->NextScheduledResponse = m->timenow; }
9155 if ((m->rec.r.resrec.RecordType & kDNSRecordTypePacketUniqueMask) && m->timenow - rr->LastMCTime > mDNSPlatformOneSecond/2)
9156 { rr->ImmedAnswer = mDNSInterfaceMark; m->NextScheduledResponse = m->timenow; }
9220 delay = NonZeroTime(m->timenow + mDNSPlatformOneSecond);
9253 rr->TimeRcvd = m->timenow;
9342 if (m->timenow - r2->TimeRcvd < mDNSPlatformOneSecond && RRExpireTime(r2) - m->timenow > mDNSPlatformOneSecond)
9363 r2->TimeRcvd = m->timenow;
9367 verbosedebugf("Cache flush new %p age %d expire in %d %s", r1, m->timenow - r1->TimeRcvd, RRExpireTime(r1) - m->timenow, CRDisplayString(m, r1));
9368 verbosedebugf("Cache flush old %p age %d expire in %d %s", r2, m->timenow - r2->TimeRcvd, RRExpireTime(r2) - m->timenow, CRDisplayString(m, r2));
9388 if (r2->TimeRcvd == m->timenow && r2->resrec.rroriginalttl == 1 && r2->UnansweredQueries == MaxUnansweredQueries)
9393 else if (RRExpireTime(r2) - m->timenow > mDNSPlatformOneSecond)
9399 r2->TimeRcvd = m->timenow - 1;
9400 // We use (m->timenow - 1) instead of m->timenow, because we use that to identify records
9893 if (!ar->KATimeExpire || (m->timenow - ar->KATimeExpire >= 0))
9896 ar->KATimeExpire = NonZeroTime(m->timenow + timeout * mDNSPlatformOneSecond);
10052 ar->TimeRcvd = m->timenow;
10053 ar->TimeExpire = m->timenow + updatelease * mDNSPlatformOneSecond;
10128 rr->expire = NonZeroTime(m->timenow + updatelease * mDNSPlatformOneSecond);
10151 if (m->SleepLimit) m->NextScheduledSPRetry = m->timenow;
10181 cr->TimeRcvd = m->timenow;
10183 cr->NextRequiredQuery = m->timenow;
10184 cr->LastUsed = m->timenow;
10509 ptime = server->penaltyTime - m->timenow;
10515 LogMsg("PenaltyTimeForServer: PenaltyTime negative %d, (server penaltyTime %d, timenow %d) resetting the penalty",
10516 ptime, server->penaltyTime, m->timenow);
10840 mDNSVal16(curmatch->port), (curmatch->penaltyTime ? (curmatch->penaltyTime - m->timenow) : 0), ifname ? ifname : "None",
10874 (curmatch->penaltyTime ? (curmatch->penaltyTime - m->timenow) : 0), ifname ? ifname : "None",
11372 question->StopTime = NonZeroTime(m->timenow + timeout * mDNSPlatformOneSecond);
11385 question->StopTime = NonZeroTime(m->timenow + GetTimeoutForMcastQuestion(m, question) * mDNSPlatformOneSecond);
11418 question->LastQTime = m->timenow;
11502 question->LastQTxTime = m->timenow;
11518 question->qname.c, DNSTypeName(question->qtype), question->InterfaceID, m->timenow,
11519 NextQSendTime(question) - m->timenow,
11520 question->DelayAnswering ? question->DelayAnswering - m->timenow : 0,
11525 question->DelayAnswering - m->timenow, question->qname.c, DNSTypeName(question->qtype));
12402 while (rr->NextUpdateCredit && m->timenow - rr->NextUpdateCredit >= 0) GrantUpdateCredit(rr);
12404 if (!rr->NextUpdateCredit) rr->NextUpdateCredit = NonZeroTime(m->timenow + kUpdateCreditRefreshInterval);
12409 if (!rr->UpdateBlocked) rr->UpdateBlocked = NonZeroTime(m->timenow + (mDNSs32)delay * mDNSPlatformOneSecond);
12722 set->NextSPSAttemptTime = m->timenow;
12854 if (!m->SuppressSending) m->SuppressSending = m->timenow + (mDNSs32)mDNSRandom((mDNSu32)InitialQuestionInterval);
12864 m->SuppressProbes - NonZeroTime(m->timenow + probedelay) < 0)
12865 m->SuppressProbes = NonZeroTime(m->timenow + probedelay);
12871 m->AnnounceOwner = NonZeroTime(m->timenow + 60 * mDNSPlatformOneSecond);
12898 q->LastQTime = m->timenow - q->ThisQInterval + qdelay;
13599 if (rr->AnnounceCount == InitialAnnounceCount && m->timenow - rr->LastAPTime >= 0)
13605 rr->LastAPTime = m->timenow + mDNSPlatformOneSecond * 9; // Send first packet at rr->LastAPTime + rr->ThisAPInterval, i.e. 10 seconds from now
14104 m->NextScheduledSPS = m->timenow;
14141 mDNSs32 timenow;
14171 timenow = mDNS_TimeNow_NoLock(m);
14173 m->timenow = 0; // MUST only be set within mDNS_Lock/mDNS_Unlock section
14174 m->timenow_last = timenow;
14175 m->NextScheduledEvent = timenow;
14176 m->SuppressSending = timenow;
14177 m->NextCacheCheck = timenow + 0x78000000;
14178 m->NextScheduledQuery = timenow + 0x78000000;
14179 m->NextScheduledProbe = timenow + 0x78000000;
14180 m->NextScheduledResponse = timenow + 0x78000000;
14181 m->NextScheduledNATOp = timenow + 0x78000000;
14182 m->NextScheduledSPS = timenow + 0x78000000;
14183 m->NextScheduledKA = timenow + 0x78000000;
14184 m->NextScheduledStopTime = timenow + 0x78000000;
14193 m->AnnounceOwner = NonZeroTime(timenow + 60 * mDNSPlatformOneSecond);
14223 m->rrcache_nextcheck[slot] = timenow + 0x78000000;;
14249 m->NextuDNSEvent = timenow + 0x78000000;
14250 m->NextSRVUpdate = timenow + 0x78000000;
14282 m->retryGetAddr = timenow + 0x78000000; // absolute time when we retry
14290 m->LastNATReplyLocalTime = timenow;
14889 rr->LastAPTime = m->timenow - rr->ThisAPInterval;
14906 m->ShutdownTime = NonZeroTime(m->timenow + mDNSPlatformOneSecond * 5);
14979 if (m->NextScheduledResponse - m->timenow < mDNSPlatformOneSecond)
14981 m->NextScheduledResponse = m->timenow;