X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprotocol_misc.c;h=9f1a5fb76349f4a58b6632770800b035c73a6696;hp=5863f9e9c7d471dcd3e9415c89a50488d2dc57f8;hb=594d5b5d15551bd802c43926c7cb8863b7531654;hpb=5bf4b88666ecafe190e8ed71d6c14c9de8d16e1f diff --git a/src/protocol_misc.c b/src/protocol_misc.c index 5863f9e9..9f1a5fb7 100644 --- a/src/protocol_misc.c +++ b/src/protocol_misc.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: protocol_misc.c,v 1.1.4.1 2002/02/11 10:05:58 guus Exp $ + $Id: protocol_misc.c,v 1.1.4.3 2002/03/23 20:21:10 guus Exp $ */ #include "config.h" @@ -122,7 +122,7 @@ int send_ping(connection_t *c) { cp c->status.pinged = 1; - c->last_ping_time = time(NULL); + c->last_ping_time = now; cp return send_request(c, "%d", PING); } @@ -143,6 +143,11 @@ int pong_h(connection_t *c) { cp c->status.pinged = 0; + + /* Succesful connection, reset timeout if this is an outgoing connection. */ + + if(c->outgoing) + c->outgoing->timeout = 0; cp return 0; }