Lines Matching defs:timestamp
38 * (1) The timestamp microseconds do not exceed 1 million.
39 * (2) The timestamp plus the window is less than the current time.
40 * (3) The timestamp is not less than the one previously
132 struct timeval timestamp;
265 * Decrypt the timestamp
292 * XDR the decrypted timestamp
295 timestamp.tv_sec = IXDR_GET_INT32(ixdr);
296 timestamp.tv_usec = IXDR_GET_INT32(ixdr);
328 ×tamp);
342 if ((ulong_t)timestamp.tv_usec >= USEC_PER_SEC) {
348 "_svcauth_des: invalid timestamp received from",
355 if (nick && BEFORE(×tamp,
362 "_svcauth_des: timestamp is earlier than the one previously seen from",
370 if (!BEFORE(¤t, ×tamp)) {
376 "_svcauth_des: timestamp expired for",
391 * xdr the timestamp before encrypting
394 IXDR_PUT_INT32(ixdr, timestamp.tv_sec - 1);
395 IXDR_PUT_INT32(ixdr, timestamp.tv_usec);
398 * encrypt the timestamp
438 entry->laststamp = timestamp;
567 cache_spot(des_block *key, char *name, struct timeval *timestamp)
582 if (BEFORE(timestamp, &cp->laststamp)) {