Searched refs:down (Results 1 - 5 of 5) sorted by relevance
/dovecot/src/director/ |
H A D | mail-host.h | 30 /* server up/down. down=TRUE has effectively the same result as if 32 bool down; member in struct:mail_host 61 void mail_host_set_down(struct mail_host *host, bool down, time_t timestamp,
|
H A D | mail-host.c | 60 if (host->down || host->tag != tag) 111 num = ((*hostp)->down ? 1 : 0) ^ (*hostp)->vhost_count; 334 void mail_host_set_down(struct mail_host *host, bool down, argument 337 if (host->down != down) { 338 const char *updown = down ? "down" : "up"; 344 host->down = down;
|
H A D | director-connection.c | 1097 bool update, down = FALSE; local 1115 down = args[3][0] == 'D'; 1137 host->down != down; 1152 if (host->down != down && 1155 down = host->down; 1157 if (host->down != down) { [all...] |
H A D | doveadm-connection.c | 111 str_printfa(str, "\t%c\t%ld", (*hostp)->down ? 'D' : 'U', 411 doveadm_cmd_host_updown(struct doveadm_connection *conn, bool down, argument 419 down ? "HOST-DOWN" : "HOST-UP", 428 if (host->down == down) { 436 mail_host_set_down(host, down, ioloop_time, "doveadm: "); 1146 i_warning("Shutting down while %u doveadm connections were waiting for ring sync", pending_count);
|
H A D | director.c | 638 str_printfa(str, "\t%c%ld\t", host->down ? 'D' : 'U', 665 "down=%d last_updown_change=%ld (hosts_hash=%u)", 666 host->ip_str, host->vhost_count, host->down ? 1 : 0, 877 ctx->old_host_down ? "down" : "up", 1092 ctx->old_host_down = old_host->down; 1469 director_connection_deinit(&conn, "Shutting down");
|
Completed in 27 milliseconds