From: Derrick Brashear Date: Mon, 22 Dec 2008 17:14:36 +0000 (+0000) Subject: rx-idledead-only-ignore-keepalives-20081222 X-Git-Tag: openafs-devel-1_5_61~654 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=c69fa8fef4de43182d9e6ebad1d5c1db71148d6d;p=packages%2Fo%2Fopenafs.git rx-idledead-only-ignore-keepalives-20081222 LICENSE IPL10 critical to not ignore e.g. other acks --- diff --git a/src/rx/rx.c b/src/rx/rx.c index 77ea8ca76..eebf1cbc5 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -5524,7 +5524,7 @@ rxi_Send(register struct rx_call *call, register struct rx_packet *p, * idle connections) */ conn->lastSendTime = call->lastSendTime = clock_Sec(); /* Don't count keepalives here, so idleness can be tracked. */ - if (p->header.type != RX_PACKET_TYPE_ACK) + if ((p->header.type != RX_PACKET_TYPE_ACK) || (((struct rx_ackPacket *)rx_DataOf(p))->reason != RX_ACK_PING)) call->lastSendData = call->lastSendTime; }