From fe84fafcb684391739a1b3366705c58683210392 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Mon, 21 Jun 2004 14:37:52 +0000 Subject: [PATCH 1/1] Handle timeouts during connecting the same way as other errors. --- src/net.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/net.c b/src/net.c index 6530316b..1b3d230e 100644 --- a/src/net.c +++ b/src/net.c @@ -248,7 +248,13 @@ static void check_dead_connections(void) } ifdebug(CONNECTIONS) logger(LOG_WARNING, _("Timeout from %s (%s) during authentication"), c->name, c->hostname); - terminate_connection(c, false); + if(c->status.connecting) { + c->status.connecting = false; + closesocket(c->socket); + do_outgoing_connection(c); + } else { + terminate_connection(c, false); + } } } } -- 2.20.1