projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5e0dd7
)
Handle timeouts during connecting the same way as other errors.
author
Guus Sliepen
<guus@tinc-vpn.org>
Mon, 21 Jun 2004 14:37:52 +0000
(14:37 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Mon, 21 Jun 2004 14:37:52 +0000
(14:37 +0000)
src/net.c
patch
|
blob
|
history
diff --git
a/src/net.c
b/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);
+ }
}
}
}