/freebsd/contrib/unbound/cachedb/ |
H A D | cachedb.c | 381 uint64_t timestamp, expiry; in prep_data() local 427 * as the packet expiry time */ in prep_data() 430 expiry = timestamp + (uint64_t)qstate->return_msg->rep->ttl; in prep_data() 432 expiry = htobe64(expiry); in prep_data() 434 if(oldlim + sizeof(timestamp)+sizeof(expiry) >= in prep_data() 437 sldns_buffer_set_limit(buf, oldlim + sizeof(timestamp)+sizeof(expiry)); in prep_data() 439 sldns_buffer_write_at(buf, oldlim+sizeof(timestamp), &expiry, in prep_data() 440 sizeof(expiry)); in prep_data() 445 /** check expiry, return true if matches OK */ 449 uint64_t expiry; in good_expiry_and_qinfo() local [all …]
|
/freebsd/crypto/openssh/regress/ |
H A D | key-options.sh | 111 verbose "key option expiry-time $which" 121 check_valid_before "invalid" 'expiry-time="INVALID"' "fail" 122 check_valid_before "expired" 'expiry-time="19990101"' "fail" 123 check_valid_before "valid" 'expiry-time="20380101"' "pass"
|
H A D | sshsig.sh | 155 fail "failed signature for $t key with valid expiry interval" 182 fail "failed find-principals for $t key with valid expiry interval" 358 fail "failed find-principals for $t key with valid expiry interval" 460 fail "failed signature for $t key with valid CA expiry interval" 467 fail "accepted signature for $t key with valid CA expiry interval but not yet valid cert" 474 fail "accepted signature for $t key with valid CA expiry interval but expired cert"
|
/freebsd/crypto/openssh/ |
H A D | auth-shadow.c | 47 * For the account and password expiration functions, we assume the expiry 84 * Checks password expiry for platforms that use shadow passwd files. 110 /* Test for Trusted Mode expiry disabled */ in auth_shadow_pwexpired()
|
H A D | auth-options.h | 46 /* key/principal expiry date */
|
/freebsd/usr.sbin/pw/ |
H A D | pw.c | 245 "\t-e date account expiry date\n" in cmdhelp() 246 "\t-p date password expiry date\n" in cmdhelp() 263 "\t-e period default expiry period\n" in cmdhelp() 293 "\t-e date account expiry date\n" in cmdhelp() 294 "\t-p date password expiry date\n" in cmdhelp()
|
H A D | pwupd.h | 72 time_t expire_days; /* Days to expiry */ 73 time_t password_days; /* Days to password expiry */
|
/freebsd/sys/fs/nfs/ |
H A D | nfsrvstate.h | 102 time_t lc_expiry; /* Expiry time (sec) */ 103 time_t lc_delegtime; /* Old deleg expiry (sec) */ 224 time_t expiry; member 243 #define ls_delegtime ls_un.deleg.expiry 313 time_t lug_expiry; /* Expiry time in sec */
|
/freebsd/lib/libutil/ |
H A D | login.conf.5 | 318 to set next password expiry date. 327 .It "warnexpire time Advance notice for pending account expiry." 328 .It "warnpassword time Advance notice for pending password expiry." 441 .It "autodelete time Time after expiry when account is auto-deleted." 445 .It "expireperiod time Time for expiry allocation."
|
/freebsd/contrib/openpam/doc/man/ |
H A D | pam.man | 70 function enforces policies such as password expiry, account expiry,
|
H A D | pam.3 | 131 function enforces policies such as password expiry, account expiry,
|
/freebsd/sbin/dhclient/ |
H A D | dhclient.c | 119 * We need to check that the expiry, renewal and rebind times are not beyond 735 /* Make up some lease expiry times in state_selecting() 737 ip->client->new->expiry = cur_time + 12000; in state_selecting() 804 ip->client->new->expiry = getULong( in dhcpack() 807 ip->client->new->expiry = getULong( in dhcpack() 810 ip->client->new->expiry = default_lease_time; in dhcpack() 812 because the lease expiry offset is unsigned. Also make sure that in dhcpack() 814 if (ip->client->new->expiry < 0 || in dhcpack() 815 ip->client->new->expiry > TIME_MAX - cur_time) in dhcpack() 816 ip->client->new->expiry = TIME_MAX - cur_time; in dhcpack() [all …]
|
/freebsd/tests/sys/netinet6/frag6/ |
H A D | frag6_10.py | 65 # R: Timeout / Expiry. 76 # Wait for expiry.
|
H A D | frag6_05.py | 65 # R: Silence (statistics only) or ICMPv6 timeout expiry. 80 # Wait for possible expiry to happen.
|
/freebsd/contrib/unbound/services/cache/ |
H A D | dns.h | 82 * that many seconds before actual TTL expiry. 111 * that many seconds before actual TTL expiry. 140 * @param expiretop: if not NULL, name where check for expiry ends for
|
/freebsd/contrib/unbound/services/ |
H A D | authzone.h | 122 /** fallback to the internet on failure or ttl-expiry of auth zone */ 260 /** is the zone currently considered expired? after expiry also older 274 /** expiry time (from SOA), time until zone data is not considered 277 time_t expiry; member 279 /** zone lease start time (start+expiry is expiration time). 304 /** timeout callback for next_probe or expiry(if that is sooner).
|
/freebsd/sys/contrib/device-tree/Bindings/watchdog/ |
H A D | nuvoton,npcm-wdt.txt | 5 expiry.
|
H A D | mtk-wdt.txt | 4 before the expiry.
|
H A D | mediatek,mtk-wdt.yaml | 14 timeout-sec/2 before the expiry.
|
/freebsd/libexec/rc/rc.d/ |
H A D | ntpd | 150 # Leapfile expiry date. 204 $verbose Within ntp leapfile expiry limit, initiating fetch
|
/freebsd/contrib/libpcap/ |
H A D | pcap-dos.c | 238 struct timeval now, expiry = { 0,0 }; in pcap_read_one() local 244 expiry.tv_usec = now.tv_usec + 1000UL * p->opt.timeout; in pcap_read_one() 245 expiry.tv_sec = now.tv_sec; in pcap_read_one() 246 while (expiry.tv_usec >= 1000000L) in pcap_read_one() 248 expiry.tv_usec -= 1000000L; in pcap_read_one() 249 expiry.tv_sec++; in pcap_read_one() 331 if (timercmp(&now, &expiry, >)) in pcap_read_one()
|
/freebsd/sys/dev/wg/ |
H A D | wg_cookie.c | 397 sbintime_t expiry; in ratelimit_gc() 404 expiry = getsbinuptime() - ELEMENT_TIMEOUT * SBT_1S; in ratelimit_gc() 408 if (r->r_last_time < expiry || force) { in ratelimit_gc() 398 sbintime_t expiry; ratelimit_gc() local
|
/freebsd/contrib/wpa/src/common/ |
H A D | dpp.c | 1261 pos = os_strstr(cmd, " expiry="); in dpp_configuration_parse_helper() 1772 char expiry[30]; in dpp_build_conf_obj_dpp() local 1776 "DPP: Failed to generate expiry string"); in dpp_build_conf_obj_dpp() 1779 os_snprintf(expiry, sizeof(expiry), in dpp_build_conf_obj_dpp() 1784 json_add_string(dppcon, "expiry", expiry); in dpp_build_conf_obj_dpp() 2670 int dpp_key_expired(const char *timestamp, os_time_t *expiry) in dpp_key_expired() argument 2730 if (expiry) in dpp_key_expired() 2731 *expiry = utime; in dpp_key_expired() 2798 token = json_get_member(root, "expiry"); in dpp_parse_connector() 2801 "DPP: No expiry string found - connector does not expire"); in dpp_parse_connector() [all …]
|
/freebsd/usr.sbin/adduser/ |
H A D | adduser.8 | 374 This field denotes the expiry date of the account. 484 Also, password ageing and account expiry times are currently settable
|
/freebsd/release/ |
H A D | Makefile.azure | 63 --expiry ${EXPIRY_DATE} | cut -d '"' -f 2
|