Searched refs:expiry (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/unbound/cachedb/
H A Dcachedb.c381 uint64_t timestamp, expiry; local
410 * as the packet expiry time */
413 expiry = timestamp + (uint64_t)qstate->return_msg->rep->ttl;
415 expiry = htobe64(expiry);
417 if(oldlim + sizeof(timestamp)+sizeof(expiry) >=
420 sldns_buffer_set_limit(buf, oldlim + sizeof(timestamp)+sizeof(expiry));
422 sldns_buffer_write_at(buf, oldlim+sizeof(timestamp), &expiry,
423 sizeof(expiry));
428 /** check expiry, retur
432 uint64_t expiry; local
496 uint64_t timestamp, expiry; local
[all...]
/freebsd-11-stable/contrib/apr/locks/unix/
H A Dglobal_mutex.c153 apr_time_t expiry = 0; local
155 expiry = apr_time_now() + timeout;
161 if (expiry) {
162 timeout = expiry - apr_time_now();
/freebsd-11-stable/include/rpc/
H A Dauth_kerb.h77 unsigned long expiry; /* time the ticket is expiring */ member in struct:authkerb_clnt_cred
/freebsd-11-stable/etc/rc.d/
H A Dntpd81 # Leapfile expiry date.
125 $verbose Within ntp leapfile expiry limit, initiating fetch
/freebsd-11-stable/sys/fs/nfs/
H A Dnfsrvstate.h89 time_t lc_delegtime; /* Old deleg expiry (sec) */
181 time_t expiry; member in struct:nfsstate::__anon12020::__anon12021
199 #define ls_delegtime ls_un.deleg.expiry
/freebsd-11-stable/sbin/dhclient/
H A Ddhclient.c112 * We need to check that the expiry, renewal and rebind times are not beyond
696 /* Make up some lease expiry times
698 ip->client->new->expiry = cur_time + 12000;
765 ip->client->new->expiry = getULong(
768 ip->client->new->expiry = getULong(
771 ip->client->new->expiry = default_lease_time;
773 because the lease expiry offset is unsigned. Also make sure that
775 if (ip->client->new->expiry < 0 ||
776 ip->client->new->expiry > TIME_MAX - cur_time)
777 ip->client->new->expiry
[all...]
H A Dclparse.c587 if (ip->client->active->expiry < cur_time)
662 lease->expiry = parse_date(cfile);
H A Ddhcpd.h122 time_t expiry, renewal, rebind; member in struct:client_lease
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-dos.c237 struct timeval now, expiry = { 0,0 }; local
243 expiry.tv_usec = now.tv_usec + 1000UL * p->opt.timeout;
244 expiry.tv_sec = now.tv_sec;
245 while (expiry.tv_usec >= 1000000L)
247 expiry.tv_usec -= 1000000L;
248 expiry.tv_sec++;
330 if (timercmp(&now, &expiry, >))
/freebsd-11-stable/contrib/unbound/services/
H A Dauthzone.h122 /** fallback to the internet on failure or ttl-expiry of auth zone */
249 /** is the zone currently considered expired? after expiry also older
263 /** expiry time (from SOA), time until zone data is not considered
266 time_t expiry; member in struct:auth_xfer
268 /** zone lease start time (start+expiry is expiration time).
293 /** timeout callback for next_probe or expiry(if that is sooner).
H A Dauthzone.c1794 /* SOA record ends with serial, refresh, retry, expiry, minimum,
1801 xfr->expiry = sldns_read_uint32(d->rr_data[0]+(d->rr_len[0]-8));
6501 *env->now >= xfr->lease_time + xfr->expiry) {
6587 * but if expiry is sooner, use that one.
6607 if(xfr->expiry < wait)
6608 xfr->task_nextprobe->next_probe += xfr->expiry;
6613 /* put the timer exactly on expiry, if possible */
6614 if(xfr->lease_time && xfr->lease_time+xfr->expiry <
6616 xfr->lease_time+xfr->expiry > *env->now)
6618 xfr->lease_time+xfr->expiry;
[all...]
/freebsd-11-stable/sys/dev/twe/
H A Dtwe.c1257 time_t expiry; local
1262 expiry = time_second + timeout;
1269 } while (time_second <= expiry);
1550 time_t expiry;
1555 expiry = time_second + timeout;
1564 } while ((time_second <= expiry) && !found);
/freebsd-11-stable/contrib/wpa/src/common/
H A Ddpp.h446 int dpp_key_expired(const char *timestamp, os_time_t *expiry);
461 os_time_t *expiry);
H A Ddpp.c4385 pos = os_strstr(cmd, " expiry=");
4671 "DPP: Failed to generate expiry string");
4675 ",\"expiry\":\"%04u-%02u-%02uT%02u:%02u:%02uZ\"",
5306 int dpp_key_expired(const char *timestamp, os_time_t *expiry) argument
5366 if (expiry)
5367 *expiry = utime;
5433 token = json_get_member(root, "expiry");
5436 "DPP: No expiry string found - connector does not expire");
5438 wpa_printf(MSG_DEBUG, "DPP: expiry = %s", token->string);
6449 os_time_t *expiry)
6445 dpp_peer_intro(struct dpp_introduction *intro, const char *own_connector, const u8 *net_access_key, size_t net_access_key_len, const u8 *csign_key, size_t csign_key_len, const u8 *peer_connector, size_t peer_connector_len, os_time_t *expiry) argument
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Ddpp_supplicant.c1330 os_time_t expiry; local
1403 connector, connector_len, &expiry);
1420 if (expiry) {
1422 seconds = expiry - now.sec;

Completed in 295 milliseconds