HomeSort by relevance Sort by last modified time
    Searched refs:mDNSPlatformOneSecond (Results 1 - 9 of 9) sorted by null

  /external/mdnsresponder/mDNSCore/
uDNS.h 28 #define RESTART_GOODBYE_DELAY (6 * mDNSPlatformOneSecond) // delay after restarting LLQ before nuking previous known answers (avoids flutter if we restart before we have networking up)
29 #define INIT_UCAST_POLL_INTERVAL (3 * mDNSPlatformOneSecond) // this interval is used after send failures on network transitions
31 #define MAX_UCAST_POLL_INTERVAL (60 * 60 * mDNSPlatformOneSecond)
32 //#define MAX_UCAST_POLL_INTERVAL (1 * 60 * mDNSPlatformOneSecond)
33 #define LLQ_POLL_INTERVAL (15 * 60 * mDNSPlatformOneSecond) // Polling interval for zones w/ an advertised LLQ port (ie not static zones) if LLQ fails due to NAT, etc.
34 #define RESPONSE_WINDOW (60 * mDNSPlatformOneSecond) // require server responses within one minute of request
36 #define DNSSERVER_PENALTY_TIME (60 * mDNSPlatformOneSecond) // number of seconds for which new questions don't pick this server
43 #define InitialQuestionInterval ((mDNSPlatformOneSecond + QuestionIntervalStep-1) / QuestionIntervalStep)
48 #define INIT_RECORD_REG_INTERVAL (1 * mDNSPlatformOneSecond)
49 #define MAX_RECORD_REG_INTERVAL (15 * 60 * mDNSPlatformOneSecond)
    [all...]
mDNS.c 94 #define kUpdateCreditRefreshInterval (mDNSPlatformOneSecond * 6)
589 #define DefaultProbeIntervalForTypeUnique (mDNSPlatformOneSecond/4)
590 #define DefaultAnnounceIntervalForTypeShared (mDNSPlatformOneSecond/2)
591 #define DefaultAnnounceIntervalForTypeUnique (mDNSPlatformOneSecond/2)
599 #define TicksTTL(RR) ((mDNSs32)(RR)->resrec.rroriginalttl * mDNSPlatformOneSecond)
679 if ((rr->LastAPTime + rr->ThisAPInterval) - m->timenow > mDNSPlatformOneSecond * 10)
703 rr->ThisAPInterval = rr->AddressProxy.type ? mDNSPlatformOneSecond : DefaultAPIntervalForRecordType(rr->resrec.RecordType);
    [all...]
uDNS.c 77 rr->ThisAPInterval/mDNSPlatformOneSecond, (rr->expire - m->timenow)/mDNSPlatformOneSecond, ARDisplayString(m, rr));
83 rr->ThisAPInterval/mDNSPlatformOneSecond, (rr->expire - m->timenow)/mDNSPlatformOneSecond, ARDisplayString(m, rr));
534 if (lease > 999999999UL / mDNSPlatformOneSecond)
535 lease = 999999999UL / mDNSPlatformOneSecond;
536 n->ExpiryTime = NonZeroTime(m->timenow + lease * mDNSPlatformOneSecond);
775 q->ThisQInterval = q->tcp ? 0 : (kLLQ_INIT_RESEND * q->ntries * mDNSPlatformOneSecond); // If using TCP, don't need to retransmit
793 mDNSs32 lease = (mDNSs32)llq->llqlease * mDNSPlatformOneSecond
    [all...]
DNSCommon.c     [all...]
mDNSEmbeddedAPI.h     [all...]
  /external/mdnsresponder/mDNSPosix/
PosixDaemon.c 166 timeout.tv_sec = ticks / mDNSPlatformOneSecond;
167 timeout.tv_usec = (ticks % mDNSPlatformOneSecond) * 1000000 / mDNSPlatformOneSecond;
NetMonitor.c 332 if (entry->NumQueries && m->timenow - entry->LastQuery < mDNSPlatformOneSecond) return;
    [all...]
mDNSPosix.c     [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c     [all...]

Completed in 369 milliseconds