/*
- * $Id: HttpHeader.cc,v 1.110 2005/12/26 11:35:22 serassio Exp $
+ * $Id: HttpHeader.cc,v 1.111 2006/02/18 00:09:35 wessels Exp $
*
* DEBUG: section 55 HTTP Header
* AUTHOR: Alex Rousskov
HttpHeaderPos pos = HttpHeaderInitPos;
HttpHeaderEntry *e;
httpHeaderMaskInit(&hdr->mask, 0); /* temporal inconsistency */
- debug(55, 7) ("deleting '%s' fields in hdr %p\n", name, hdr);
+ debug(55, 9) ("deleting '%s' fields in hdr %p\n", name, hdr);
while ((e = httpHeaderGetEntry(hdr, &pos))) {
if (!e->name.caseCmp(name)) {
assert(hdr && e);
assert_eid(e->id);
- debugs(55, 7, hdr << " adding entry: " << e->id << " at " <<
+ debugs(55, 9, hdr << " adding entry: " << e->id << " at " <<
hdr->entries.count);
if (CBIT_TEST(hdr->mask, e->id))
{
HttpHeaderEntry *e;
HttpHeaderPos pos = HttpHeaderInitPos;
- debug(55, 6) ("%p: joining for id %d\n", hdr, id);
+ debug(55, 9) ("%p: joining for id %d\n", hdr, id);
/* only fields from ListHeaders array can be "listed" */
assert(CBIT_TEST(ListHeadersMask, id));
assert(hdr);
assert_eid(id);
assert(id != HDR_OTHER);
- debug(55, 7) ("%p lookup for %d\n", hdr, id);
+ debug(55, 9) ("%p lookup for %d\n", hdr, id);
return CBIT_TEST(hdr->mask, id);
}
/*
- * $Id: cbdata.cc,v 1.69 2006/01/24 15:42:27 hno Exp $
+ * $Id: cbdata.cc,v 1.70 2006/02/18 00:09:35 wessels Exp $
*
* DEBUG: section 45 Callback Data Registry
* ORIGINAL AUTHOR: Duane Wessels
debug(45, 3) ("cbdataFree: %p %s:%d\n", p, file, line);
#else
- debug(45, 3) ("cbdataFree: %p\n", p);
+ debug(45, 9) ("cbdataFree: %p\n", p);
#endif
c->check(__LINE__);
#endif
if (c->locks) {
- debug(45, 3) ("cbdataFree: %p has %d locks, not freeing\n",
+ debug(45, 9) ("cbdataFree: %p has %d locks, not freeing\n",
p, c->locks);
return NULL;
}
cbdataCount--;
- debug(45, 3) ("cbdataFree: Freeing %p\n", p);
+ debug(45, 9) ("cbdataFree: Freeing %p\n", p);
#if CBDATA_DEBUG
dlinkDelete(&c->link, &cbdataEntries);
#else
- debug(45, 3) ("cbdataLock: %p=%d\n", p, c ? c->locks + 1 : -1);
+ debug(45, 9) ("cbdataLock: %p=%d\n", p, c ? c->locks + 1 : -1);
#endif
#else
- debug(45, 3) ("cbdataUnlock: %p=%d\n", p, c ? c->locks - 1 : -1);
+ debug(45, 9) ("cbdataUnlock: %p=%d\n", p, c ? c->locks - 1 : -1);
#endif
cbdataCount--;
- debug(45, 3) ("cbdataUnlock: Freeing %p\n", p);
+ debug(45, 9) ("cbdataUnlock: Freeing %p\n", p);
#if CBDATA_DEBUG
if (p == NULL)
return 1; /* A NULL pointer cannot become invalid */
- debug(45, 3) ("cbdataReferenceValid: %p\n", p);
+ debug(45, 9) ("cbdataReferenceValid: %p\n", p);
c = (cbdata *) (((char *) p) - cbdata::Offset);
/*
- * $Id: tools.cc,v 1.264 2005/09/24 13:21:00 serassio Exp $
+ * $Id: tools.cc,v 1.265 2006/02/18 00:09:35 wessels Exp $
*
* DEBUG: section 21 Misc Functions
* AUTHOR: Harvest Derived
if (state == 0) {
#ifndef MEM_GEN_TRACE
- Debug::parseOptions("ALL,10");
+ Debug::parseOptions("ALL,7");
#else
log_trace_done();