]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Deleted TCP_IMS_MISS. Always use TCP_IMS_HIT.
authorwessels <>
Tue, 18 Aug 1998 00:48:57 +0000 (00:48 +0000)
committerwessels <>
Tue, 18 Aug 1998 00:48:57 +0000 (00:48 +0000)
src/access_log.cc
src/client_side.cc
src/enums.h

index 7e992b9c7e454ee0fc6e42b6e3e7c9abfc9a481e..d8a9f5eb4c347dd8a97a4c3d901c5feac3277fdc 100644 (file)
@@ -1,7 +1,7 @@
 
 
 /*
- * $Id: access_log.cc,v 1.40 1998/07/24 14:40:51 wessels Exp $
+ * $Id: access_log.cc,v 1.41 1998/08/17 18:48:57 wessels Exp $
  *
  * DEBUG: section 46    Access Log
  * AUTHOR: Duane Wessels
@@ -52,7 +52,6 @@ const char *log_tags[] =
     "TCP_REFRESH_MISS",
     "TCP_CLIENT_REFRESH_MISS",
     "TCP_IMS_HIT",
-    "TCP_IMS_MISS",
     "TCP_SWAPFAIL_MISS",
     "TCP_NEGATIVE_HIT",
     "TCP_MEM_HIT",
index b71179ab3e4ebc4e7968c9584ed0718849bf21d5..f3a6e828503ed528073095867441753a33c2026a 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_side.cc,v 1.380 1998/08/17 16:44:02 wessels Exp $
+ * $Id: client_side.cc,v 1.381 1998/08/17 18:48:59 wessels Exp $
  *
  * DEBUG: section 33    Client-side Routines
  * AUTHOR: Duane Wessels
@@ -1161,7 +1161,7 @@ clientCacheHit(void *data, char *buf, ssize_t size)
            memFree(MEM_4K_BUF, buf);
            clientProcessMiss(http);
        } else if (modifiedSince(e, http->request)) {
-           http->log_type = LOG_TCP_IMS_MISS;
+           http->log_type = LOG_TCP_IMS_HIT;
            clientSendMoreData(data, buf, size);
        } else {
            MemBuf mb = httpPacked304Reply(e->mem_obj->reply);
index fdad9fe79113fe144c6aad7b27f3cdd48eeb7591..055e12db1d8017f845774dc8e5026de306cc7bee 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: enums.h,v 1.115 1998/08/16 06:35:17 wessels Exp $
+ * $Id: enums.h,v 1.116 1998/08/17 18:49:00 wessels Exp $
  *
  *
  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
@@ -40,7 +40,6 @@ typedef enum {
     LOG_TCP_REFRESH_MISS,
     LOG_TCP_CLIENT_REFRESH_MISS,
     LOG_TCP_IMS_HIT,
-    LOG_TCP_IMS_MISS,
     LOG_TCP_SWAPFAIL_MISS,
     LOG_TCP_NEGATIVE_HIT,
     LOG_TCP_MEM_HIT,