]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
DW:
authorwessels <>
Wed, 4 Oct 2000 21:54:45 +0000 (21:54 +0000)
committerwessels <>
Wed, 4 Oct 2000 21:54:45 +0000 (21:54 +0000)
 - Some debugging for the case when we deny a proxy request and Squid
   is configured for proxy-only mode.

src/client_side.cc

index 5dabd9f162f8cb1081c05447c74a175c657f0b5b..94b2063cd568c4a68c56b07432da85aeaf99db11 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_side.cc,v 1.503 2000/10/04 15:32:13 wessels Exp $
+ * $Id: client_side.cc,v 1.504 2000/10/04 15:54:45 wessels Exp $
  *
  * DEBUG: section 33    Client-side Routines
  * AUTHOR: Duane Wessels
@@ -167,6 +167,7 @@ clientAccessCheck(void *data)
     clientHttpRequest *http = data;
     if (checkAccelOnly(http)) {
        /* deny proxy requests in accel_only mode */
+       debug(33, 1) ("clientAccessCheck: proxy request denied in accel_only mode\n");
        clientAccessCheckDone(ACCESS_DENIED, http);
        return;
     }