Author: adrian.chadd
Date: Fri Apr 10 09:16:52 2009
New Revision: 13920
Modified:
branches/LUSCA_HEAD/src/neighbors.c
Log:
Issue #7 - quieten HTCP clean messages
Modified: branches/LUSCA_HEAD/src/neighbors.c
==============================================================================
--- branches/LUSCA_HEAD/src/neighbors.c (original)
+++ branches/LUSCA_HEAD/src/neighbors.c Fri Apr 10 09:16:52 2009
@@ -1522,7 +1522,7 @@
peer *p;
int i;
- debug(15, 1) ("neighborsHtcpClear: clear reason: %d\n", reason);
+ debug(15, 3) ("neighborsHtcpClear: clear reason: %d\n", reason);
for (i = 0, p = Config.peers; i++ < Config.npeers; p = p->next) {
if (!p->options.htcp) {
continue;
@@ -1533,7 +1533,7 @@
if (p->options.htcp_no_purge_clr && reason == HTCP_CLR_PURGE) {
continue;
}
- debug(15, 1) ("neighborsHtcpClear: sending CLR to %s:%d\n",
inet_ntoa(p->in_addr.sin_addr), ntohs(p->in_addr.sin_port));
+ debug(15, 3) ("neighborsHtcpClear: sending CLR to %s:%d\n",
inet_ntoa(p->in_addr.sin_addr), ntohs(p->in_addr.sin_port));
htcpClear(e, uri, req, method, p, reason);
}
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"lusca-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/lusca-commit?hl=en
-~----------~----~----~----~------~----~------~--~---