• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/postfix-255/postfix/src/verify/

Lines Matching defs:updated

263   * format of the data field is "status:probed:updated:text". The meaning of
273 * updated: if non-zero, the time the address probe result was received. If
288 long updated, const char *text)
290 vstring_sprintf(buf, "%d:%ld:%ld:%s", status, probed, updated, text);
296 long *updated, char **text)
308 *updated = atol(updated_text);
312 * Coverity 200604: the code incorrectly tested (probed || updated),
321 && (*probed || *updated))
352 long updated;
379 updated = (long) time((time_t *) 0);
380 verify_make_entry(buf, addr_status, probed, updated, STR(text));
382 msg_info("PUT %s status=%d probed=%ld updated=%ld text=%s",
383 STR(addr), addr_status, probed, updated, STR(text));
419 long updated;
443 #define POSITIVE_ENTRY_EXPIRED(addr_status, updated) \
444 (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_exp < now)
445 #define NEGATIVE_ENTRY_EXPIRED(addr_status, updated) \
446 (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_exp < now)
455 &updated, &text) < 0)
457 && (POSITIVE_ENTRY_EXPIRED(addr_status, updated)
458 || NEGATIVE_ENTRY_EXPIRED(addr_status, updated)))) {
461 updated = 0;
467 msg_info("GOT %s status=%d probed=%ld updated=%ld text=%s",
468 STR(addr), addr_status, probed, updated, text);
490 #define POSITIVE_REFRESH_NEEDED(addr_status, updated) \
491 (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_try < now)
492 #define NEGATIVE_REFRESH_NEEDED(addr_status, updated) \
493 (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_try < now)
496 && (POSITIVE_REFRESH_NEEDED(addr_status, updated)
497 || NEGATIVE_REFRESH_NEEDED(addr_status, updated))) {
499 msg_info("PROBE %s status=%d probed=%ld updated=%ld",
500 STR(addr), addr_status, now, updated);
507 if (updated != 0 || var_verify_neg_cache != 0) {
509 verify_make_entry(put_buf, addr_status, now, updated, text);
511 msg_info("PUT %s status=%d probed=%ld updated=%ld text=%s",
512 STR(addr), addr_status, now, updated, text);
532 long updated;
542 &probed, &updated, &text) == 0
544 || !POS_OR_NEG_ENTRY_EXPIRED(addr_status, updated)));