From: Amos Jeffries Date: Sat, 19 Jul 2008 05:08:38 +0000 (-0600) Subject: Correct HTCP stats. Slipped out with peerAlive conversion X-Git-Tag: SQUID_3_0_STABLE9~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=363b2c6801aa07006a1a435daa5cf7f2d0195610;p=thirdparty%2Fsquid.git Correct HTCP stats. Slipped out with peerAlive conversion --- diff --git a/src/neighbors.cc b/src/neighbors.cc index 9083b3ce6c..b347f2912b 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -986,6 +986,7 @@ static void neighborAliveHtcp(peer * p, const MemObject * mem, const htcpReplyData * htcp) { peerAlive(p); + p->stats.pings_acked++; p->htcp.counts[htcp->hit ? 1 : 0]++; p->htcp.version = htcp->version; }