Searched defs:lifetime (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/lib/dns/
H A Dnta.c279 settimer(dns_ntatable_t *ntatable, dns_nta_t *nta, isc_uint32_t lifetime) { argument
291 if (view->nta_recheck == 0 || lifetime <= view->nta_recheck)
342 isc_uint32_t lifetime)
357 nta->expiry = now + lifetime;
366 (void)settimer(ntatable, nta, lifetime);
373 (void)settimer(ntatable, nta, lifetime);
340 dns_ntatable_add(dns_ntatable_t *ntatable, dns_name_t *name, isc_boolean_t force, isc_stdtime_t now, isc_uint32_t lifetime) argument
H A Dgssapictx.c141 OM_uint32 gret, minor, lifetime; local
148 gret = gss_inquire_cred(&minor, cred, &gname, &lifetime, &usage, NULL);
174 usage_text, (unsigned long)lifetime);
256 OM_uint32 lifetime; local
302 &mech_oid_set, usage, cred, NULL, &lifetime);
H A Dtkey.c532 OM_uint32 gret, minor, lifetime; local
539 * Limit keys to 1 hour or the context's lifetime whichever
544 gret = gss_context_time(&minor, gss_ctx, &lifetime);
545 if (gret == GSS_S_COMPLETE && now + lifetime < expire)
546 expire = now + lifetime;
973 isc_uint32_t lifetime)
999 tkey.expire = now + lifetime;
1047 isc_buffer_t *intoken, isc_uint32_t lifetime,
1084 tkey.expire = now + lifetime;
971 dns_tkey_builddhquery(dns_message_t *msg, dst_key_t *key, dns_name_t *name, dns_name_t *algorithm, isc_buffer_t *nonce, isc_uint32_t lifetime) argument
1046 dns_tkey_buildgssquery(dns_message_t *msg, dns_name_t *name, dns_name_t *gname, isc_buffer_t *intoken, isc_uint32_t lifetime, gss_ctx_id_t *context, isc_boolean_t win2k, isc_mem_t *mctx, char **err_message) argument
/bind-9.11.3/lib/bind9/
H A Dcheck.c942 isc_uint32_t lifetime = 3600; local
1340 (void)cfg_map_get(options, "nta-lifetime", &obj);
1342 lifetime = cfg_obj_asuint32(obj);
1343 if (lifetime > 604800) { /* 7 days */
1345 "'nta-lifetime' cannot exceed one week");
1347 } else if (lifetime == 0) {
1349 "'nta-lifetime' may not be zero");
1364 if (recheck > lifetime)
1367 "greater than 'nta-lifetime' "
1368 "(%d seconds)", recheck, lifetime);
[all...]

Completed in 24 milliseconds