diff --context --recursive squid-1.1.0.ucs.cns/src/neighbors.c squid-1.1.0.ucs.cns-2/src/neighbors.c *** squid-1.1.0.ucs.cns/src/neighbors.c Wed Dec 11 12:04:20 1996 --- squid-1.1.0.ucs.cns-2/src/neighbors.c Tue Dec 10 23:26:10 1996 *************** *** 506,512 **** } else { /* Neighbor is dead; ping it anyway, but don't expect a reply */ /* log it once at the threshold */ ! if ((e->stats.ack_deficit == HIER_MAX_DEFICIT)) { debug(15, 0, "Detected DEAD %s: %s/%d/%d\n", e->type == EDGE_SIBLING ? "SIBLING" : "PARENT", e->host, e->http_port, e->icp_port); --- 506,512 ---- } else { /* Neighbor is dead; ping it anyway, but don't expect a reply */ /* log it once at the threshold */ ! if ((e->stats.ack_deficit == HIER_MAX_DEFICIT) && !e->mcast_ttl) { debug(15, 0, "Detected DEAD %s: %s/%d/%d\n", e->type == EDGE_SIBLING ? "SIBLING" : "PARENT", e->host, e->http_port, e->icp_port); *************** *** 698,704 **** } } else if (opcode == ICP_OP_MISS) { if (e == NULL) { ! debug(15, 1, "Ignoring MISS from non-neighbor %s\n", inet_ntoa(from->sin_addr)); } else if (ntype == EDGE_PARENT) { w_rtt = tvSubMsec(mem->start_ping, current_time) / e->weight; --- 698,704 ---- } } else if (opcode == ICP_OP_MISS) { if (e == NULL) { ! debug(15, 2, "Ignoring MISS from non-neighbor %s\n", inet_ntoa(from->sin_addr)); } else if (ntype == EDGE_PARENT) { w_rtt = tvSubMsec(mem->start_ping, current_time) / e->weight;