Handle timeouts during connecting the same way as other errors.
[tinc] / src / net.c
index 6530316..1b3d230 100644 (file)
--- 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);
+                               }
                        }
                }
        }