]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
put URL strings with StoreEntries
authorwessels <>
Tue, 15 Oct 1996 03:29:32 +0000 (03:29 +0000)
committerwessels <>
Tue, 15 Oct 1996 03:29:32 +0000 (03:29 +0000)
src/stat.cc

index 570ff042e58112ddcbdd8707400c4b6f59a1178e..755045d3c6aab872f58aa5baf67e7c73ccbcf0e0 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: stat.cc,v 1.84 1996/10/13 06:19:51 wessels Exp $
+ * $Id: stat.cc,v 1.85 1996/10/14 21:29:32 wessels Exp $
  *
  * DEBUG: section 18    Cache Manager Statistics
  * AUTHOR: Harvest Derived
@@ -790,6 +790,10 @@ info_get(cacheinfo * obj, StoreEntry * sentry)
        (int) sizeof(StoreEntry),
        (int) (meta_data.store_entries * sizeof(StoreEntry) >> 10));
 
+    storeAppendPrintf(sentry, "{\t%-25.25s                      = %6d KB}\n",
+       "URL strings",
+       meta_data.url_strings >> 10);
+
     storeAppendPrintf(sentry, "{\t%-25.25s %7d x %4d bytes = %6d KB}\n",
        "IPCacheEntry",
        meta_data.ipcache_count,
@@ -808,10 +812,6 @@ info_get(cacheinfo * obj, StoreEntry * sentry)
        (int) sizeof(hash_link),
        (int) (hash_links_allocated * sizeof(hash_link) >> 10));
 
-    storeAppendPrintf(sentry, "{\t%-25.25s                      = %6d KB}\n",
-       "URL strings",
-       meta_data.url_strings >> 10);
-
     storeAppendPrintf(sentry, "{\t%-25.25s %7d x %4d bytes = %6d KB (%6d free)}\n",
        "Pool MemObject structures",
        mem_obj_pool.total_pages_allocated,