]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
attempt pipelining requests
authorwessels <>
Sat, 17 May 1997 21:59:45 +0000 (21:59 +0000)
committerwessels <>
Sat, 17 May 1997 21:59:45 +0000 (21:59 +0000)
src/event.cc

index 4347369a666cd9459381837d6beeabd38a5f2278..fa24785c21800428b362956abd4db8cdb9807d5f 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: event.cc,v 1.6 1997/04/29 22:12:53 wessels Exp $
+ * $Id: event.cc,v 1.7 1997/05/17 15:59:45 wessels Exp $
  *
  * DEBUG: section 41    Event Processing
  * AUTHOR: Henrik Nordstrom
@@ -51,7 +51,7 @@ eventAdd(const char *name, EVH * func, void *arg, time_t when)
     event->arg = arg;
     event->name = name;
     event->when = squid_curtime + when;
-    debug(41, 3, "eventAdd: Adding '%s', in %d seconds\n", name, when);
+    debug(41, 7, "eventAdd: Adding '%s', in %d seconds\n", name, when);
     /* Insert after the last event with the same or earlier time */
     for (E = &tasks; *E; E = &(*E)->next) {
        if ((*E)->when > event->when)
@@ -88,7 +88,7 @@ eventRun(void)
        return;
     if (event->when > squid_curtime)
        return;
-    debug(41, 3, "eventRun: Running '%s'\n", event->name);
+    debug(41, 7, "eventRun: Running '%s'\n", event->name);
     func = event->func;
     arg = event->arg;
     event->func = NULL;