#define MAX_INBUF_SIZE (1024*1024)
static void client_connection_input(struct client_connection *conn);
+static void
+client_connection_send_auth_handshake(struct client_connection *conn);
static failure_callback_t *orig_error_callback, *orig_fatal_callback;
static failure_callback_t *orig_info_callback, *orig_debug_callback = NULL;
DOVEADM_CLIENT_PROTOCOL_VERSION_LINE"\n");
conn->use_multiplex = TRUE;
}
+ client_connection_send_auth_handshake(conn);
conn->handshaked = TRUE;
}
if (!conn->authenticated) {
}
conn->preauthenticated =
client_connection_is_preauthenticated(listen_fd);
- client_connection_send_auth_handshake(conn);
client_connection_set_proctitle(conn, "");