Searched refs:DAYSEC (Results 1 - 8 of 8) sorted by relevance
/bind-9.6-ESV-R11/contrib/zkt/ |
H A D | rollover.h | 49 # define ADD_HOLD_DOWN (30 * DAYSEC) 51 # define REMOVE_HOLD_DOWN (30 * DAYSEC) 53 # define REMOVE_HOLD_DOWN (10 * DAYSEC) /* reduced for testiing purposes */
|
H A D | zconf.h | 44 # define DAYSEC (HOURSEC * 24) macro 45 # define WEEKSEC (DAYSEC * 7) 46 # define YEARSEC (DAYSEC * 365) 53 # define SIG_VALIDITY (SIG_VALID_DAYS * DAYSEC) 62 # define RESIGN_INT ((SIG_VALID_DAYS - (SIG_VALID_DAYS / 3)) * DAYSEC) 65 # define ZSK_LIFETIME ((SIG_VALID_DAYS * 3) * DAYSEC) /* set to three times the sig validity */ 68 # define ZSK_LIFETIME ((MONTH * 3) * DAYSEC) /* set fixed to 3 month */
|
H A D | rollover.c | 73 dkp = dki_new (dir, domain, DKI_KSK, conf->k_algo, conf->k_bits, conf->k_random, conf->k_life / DAYSEC); 75 dkp = dki_new (dir, domain, DKI_ZSK, conf->k_algo, conf->z_bits, conf->z_random, conf->z_life / DAYSEC); 90 dkp = dki_new (dir, domain, DKI_KSK, conf->k2_algo, conf->k_bits, conf->k_random, conf->k_life / DAYSEC); 92 dkp = dki_new (dir, domain, DKI_ZSK, conf->k2_algo, conf->z_bits, conf->z_random, conf->z_life / DAYSEC); 427 lg_mesg (LG_DEBUG, "Stb time+wait: %s", time2str (dki_time (standbykey) + min (DAYSEC * 30, z->key_ttl), 's'));
|
H A D | zfparse.c | 133 lval *= DAYSEC;
|
H A D | dnssec-zkt.c | 512 dkp = dki_new (dir, keyname, DKI_ZSK, conf->k_algo, conf->z_bits, conf->z_random, conf->z_life / DAYSEC); 514 dkp = dki_new (dir, keyname, DKI_KSK, conf->k_algo, conf->k_bits, conf->k_random, conf->k_life / DAYSEC); 613 // parent_propagation = 2 * DAYSEC; 651 dkp = dki_new (dir, keyname, DKI_KSK, conf->k_algo, conf->k_bits, conf->k_random, conf->k_life / DAYSEC);
|
H A D | misc.c | 944 if ( sec / DAYSEC > 0 ) 946 len += snprintf (str+len, strsize - len, "%2lud", sec / (ulong)DAYSEC); 947 sec %= DAYSEC;
|
H A D | zkt-keyman.c | 419 dkp = dki_new (dir, keyname, DKI_ZSK, conf->k_algo, conf->z_bits, conf->z_random, conf->z_life / DAYSEC); 421 dkp = dki_new (dir, keyname, DKI_KSK, conf->k_algo, conf->k_bits, conf->k_random, conf->k_life / DAYSEC); 520 // parent_propagation = 2 * DAYSEC; 558 dkp = dki_new (dir, keyname, DKI_KSK, conf->k_algo, conf->k_bits, conf->k_random, conf->k_life / DAYSEC);
|
H A D | dki.c | 112 case 'l': dkp->lifetime = atoi (val) * DAYSEC; break; 930 return (dkp->lifetime / DAYSEC); 955 dkp->lifetime = days * DAYSEC; /* set new lifetime */ 964 return (lifetsec / DAYSEC);
|
Completed in 24 milliseconds