From: wessels <> Date: Fri, 31 Jul 1998 04:59:45 +0000 (+0000) Subject: adding NEIGHBOR_NO_NETDB_EXCHANGE for stats output X-Git-Tag: SQUID_3_0_PRE1~2952 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a5dae67354a246a0248e28912ef4bfa9796a644;p=thirdparty%2Fsquid.git adding NEIGHBOR_NO_NETDB_EXCHANGE for stats output --- diff --git a/src/neighbors.cc b/src/neighbors.cc index e0a6b73995..ef902d1e4e 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -1,6 +1,6 @@ /* - * $Id: neighbors.cc,v 1.229 1998/07/22 20:37:37 wessels Exp $ + * $Id: neighbors.cc,v 1.230 1998/07/30 22:59:45 wessels Exp $ * * DEBUG: section 15 Neighbor Routines * AUTHOR: Harvest Derived @@ -1066,6 +1066,8 @@ dump_peer_options(StoreEntry * sentry, peer * p) if (EBIT_TEST(p->options, NEIGHBOR_HTCP)) storeAppendPrintf(sentry, " htcp"); #endif + if (EBIT_TEST(p->options, NEIGHBOR_NO_NETDB_EXCHANGE)) + storeAppendPrintf(sentry, " no-netdb-exchange"); if (p->mcast.ttl > 0) storeAppendPrintf(sentry, " ttl=%d", p->mcast.ttl); storeAppendPrintf(sentry, "\n");