Home | History | Annotate | Download | only in mDNSCore

Lines Matching full:negttl

7096 					mDNSu32 negttl = 60;
7107 if (q.qtype == kDNSType_SOA && SameDomainName(&q.qname, &localdomain)) negttl = 60 * 60 * 24;
7122 if (negttl < ttl_s) negttl = ttl_s;
7148 if (negttl < neg->resrec.rroriginalttl * 2)
7149 negttl = neg->resrec.rroriginalttl * 2;
7150 if (negttl > 3600)
7151 negttl = 3600;
7154 negttl = GetEffectiveTTL(LLQType, negttl); // Add 25% grace period if necessary
7159 debugf("Renewing negative TTL from %d to %d %s", neg->resrec.rroriginalttl, negttl, CRDisplayString(m, neg));
7160 RefreshCacheRecord(m, neg, negttl);
7164 debugf("mDNSCoreReceiveResponse making negative cache entry TTL %d for %##s (%s)", negttl, name->c, DNSTypeName(q.qtype));
7165 MakeNegativeCacheRecord(m, &m->rec.r, name, hash, q.qtype, q.qclass, negttl, mDNSInterface_Any, qptr->qDNSServer);