From a057ea84353a56be9e42fa772221f1f18cdd4478 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 9 Jun 1994 12:11:37 +0000 Subject: [PATCH] *** empty log message *** --- src/ca/conn.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ca/conn.c b/src/ca/conn.c index 231985602..e87204a3e 100644 --- a/src/ca/conn.c +++ b/src/ca/conn.c @@ -87,12 +87,17 @@ int silent; /* * remain backwards compatible with old servers + * ( this isnt an echo request ) */ if(!CA_V43(CA_PROTOCOL_VERSION, piiu->minor_version_number)){ + int stmo; int rtmo; + stmo = (current-piiu->timeAtEchoRequest) + > CA_RETRY_PERIOD; rtmo = (current-piiu->timeAtLastRecv)>CA_RETRY_PERIOD; - if(rtmo && !sendBytesPending){ + if(stmo && rtmo && !sendBytesPending){ + piiu->timeAtEchoRequest = current; noop_msg(piiu); } continue;