]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
update
authorwessels <>
Sat, 14 Sep 1996 05:17:12 +0000 (05:17 +0000)
committerwessels <>
Sat, 14 Sep 1996 05:17:12 +0000 (05:17 +0000)
ChangeLog
scripts/udp-banger.pl

index 7648e3d63214a5cbfc380fac182dfbac90d0c5a1..6c5489188f8bf041b060b61303c86d39cd090437 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+Changes to squid-1.1.beta2 (:
+
+       - Added setting cachemgr.cgi fields from query string
+         (Neil Murray).
+       - Split log type TCP_IFMODSINCE into TCP_IMS_HIT and
+         TCP_IMS_MISS
+       - Replaced proto_hit() and proto_miss() with proto_count()
+         which looks at log_type argument to calcultate hits
+         and misses.
+       - Split CacheInfo into HTTPCacheInfo and ICPCacheInfo.
+       - Placed call to proto_count() just after log_append()
+         so we only need it in one place.
+       - Made a lot of proto.c functions static and added prototypes.
+
 Changes to squid-1.1.beta1 (September 12, 1996):
 
        - Fixed stupid coredump bug in storeGetSwapSpace().
index 85b5f8337c220932ff20869e29482353ccaefe9d..bd6d69228a80296fdc23ad650b95f6a54fafd487 100755 (executable)
@@ -39,7 +39,7 @@ $port=(shift || '3130') ;
     "ICP_OP_UNUSED6",
     "ICP_OP_UNUSED7",
     "ICP_OP_UNUSED8",
-    "ICP_OP_UNUSED9",
+    "UDP_RELOADING",
     "UDP_DENIED",
     "UDP_HIT_OBJ",
     "ICP_END"
@@ -62,7 +62,7 @@ die "socket: $!\n" unless
 while (<>) {
        chop;
        $request_template = 'CCnx4Nx4x4a4a' . length;
-       $request = pack($request_template, 1, 1, 24 + length, ~0, $myip, $_);
+       $request = pack($request_template, 1, 2, 24 + length, ~0, $myip, $_);
        die "send: $!\n" unless
                send(SOCK, $request, 0, $them);
        die "recv: $!\n" unless