X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprotocol_misc.c;h=af1cb527eb1426f9a31cce802861af40bb45a6da;hp=0e4a86d7b6a996dd99e537597c4cf257f73944b8;hb=627f7c22b447bd464b536cd016278545674df93d;hpb=14979f835df4214a7c2510852f7ffedc9e08c2c0 diff --git a/src/protocol_misc.c b/src/protocol_misc.c index 0e4a86d7..af1cb527 100644 --- a/src/protocol_misc.c +++ b/src/protocol_misc.c @@ -1,7 +1,7 @@ /* protocol_misc.c -- handle the meta-protocol, miscellaneous functions - Copyright (C) 1999-2002 Ivo Timmermans , - 2000-2002 Guus Sliepen + Copyright (C) 1999-2002 Ivo Timmermans , + 2000-2002 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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.2 2002/03/01 14:09:31 guus Exp $ + $Id: protocol_misc.c,v 1.1.4.4 2002/06/21 10:11:19 guus Exp $ */ #include "config.h" @@ -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; }