connection.c (dovecot-2.3.16) | : | connection.c (dovecot-2.3.17) | ||
---|---|---|---|---|
skipping to change at line 492 | skipping to change at line 492 | |||
} | } | |||
} | } | |||
static void connection_client_connected(struct connection *conn, bool success) | static void connection_client_connected(struct connection *conn, bool success) | |||
{ | { | |||
i_assert(conn->list->set.client); | i_assert(conn->list->set.client); | |||
connection_update_properties(conn); | connection_update_properties(conn); | |||
conn->connect_finished = ioloop_timeval; | conn->connect_finished = ioloop_timeval; | |||
event_add_timeval(conn->event, "connect_finished_time", | ||||
&ioloop_timeval); | ||||
struct event_passthrough *e = event_create_passthrough(conn->event)-> | struct event_passthrough *e = event_create_passthrough(conn->event)-> | |||
set_name("server_connection_connected"); | set_name("server_connection_connected"); | |||
if (success) { | if (success) { | |||
e_debug(e->event(), "Client connected (fd=%d)", | e_debug(e->event(), "Client connected (fd=%d)", | |||
conn->fd_in); | conn->fd_in); | |||
} else { | } else { | |||
e_debug(e->event(), "Client connection failed (fd=%d)", | e_debug(e->event(), "Client connection failed (fd=%d)", | |||
conn->fd_in); | conn->fd_in); | |||
} | } | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 0 lines changed or added |