From: Amos Jeffries Date: Wed, 26 May 2010 03:06:02 +0000 (+1200) Subject: Add source-maintenance.sh to perform automated Maintenance Updates X-Git-Tag: SQUID_3_2_0_1~191 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b510f3a1757bb0be3e34f4d698680f976883f4d1;p=thirdparty%2Fsquid.git Add source-maintenance.sh to perform automated Maintenance Updates * merge scripts/srcformat.sh automated formatting * merge scripts/mk-debugs.sh previously manual debug section indexing Also, cleanup some source files debug section information ready for regular automated enforcement. --- diff --git a/doc/debug-sections.txt b/doc/debug-sections.txt index 09de809458..4540d06370 100644 --- a/doc/debug-sections.txt +++ b/doc/debug-sections.txt @@ -1,37 +1,38 @@ - * DEBUG: none none Common Removal Policy none ETag parsing support none FDE -none Generate squid.conf.default and cf_parser.h +none Generate squid.conf.default and cf_parser.cci none Linked list functions (deprecated) none LRU Removal Policy none Memory Allocation none Refcount allocator -section 0 Announcement Server -section 0 Client Database -section 0 Debug Routines -section 0 DNS Resolver -section 0 Hash Tables -section 0 UFS Store Dump -section -- External DISKD process implementation. -section 1 Main Loop -section 1 Startup and Main Loop -section 2 Unlink Daemon -section 3 Configuration File Parsing -section 4 Error Generation -section 5 Comms -section 5 Socket Functions -section 6 Disk I/O Routines -section 7 Multicast -section 8 Swap File Bitmap -section 9 File Transfer Protocol (FTP) +section 00 Announcement Server +section 00 Client Database +section 00 Debug Routines +section 00 DNS Resolver Daemon +section 00 Hash Tables +section 00 UFS Store Dump Tool +section 01 Main Loop +section 01 Startup and Main Loop +section 02 Unlink Daemon +section 03 Configuration File Parsing +section 03 Configuration Settings +section 04 Error Generation +section 05 Comm +section 05 Listener Socket Handler +section 05 Socket Functions +section 06 Disk I/O Routines +section 07 Multicast +section 08 Swap File Bitmap +section 09 File Transfer Protocol (FTP) section 10 Gopher section 11 Hypertext Transfer Protocol (HTTP) -section 12 Internet Cache Protocol +section 12 Internet Cache Protocol (ICP) section 13 High Level Memory Pool Management section 14 IP Cache +section 14 IP Storage and Handling section 15 Neighbor Routines section 16 Cache Manager Objects section 17 Request Forwarding @@ -53,7 +54,8 @@ section 21 Time Functions section 22 Refresh Calculation section 23 URL Parsing section 23 URL Scheme parsing -section 25 MIME Parsing +section 25 MiME Header Parsing +section 25 MIME Parsing and Internal Icons section 26 Secure Sockets Layer Proxy section 27 Cache Announcer section 28 Access Control @@ -69,6 +71,8 @@ section 35 FQDN Cache section 37 ICMP Routines section 38 Network Measurement Database section 39 Cache Array Routing Protocol +section 39 Peer source hash based selection +section 39 Peer user hash based selection section 40 Referer Logging section 40 User-Agent Logging section 41 Event Processing @@ -113,6 +117,7 @@ section 74 HTTP Message section 75 WHOIS protocol section 76 Internal Squid Object handling section 77 Delay Pools +section 78 DNS lookups section 78 DNS lookups; interacts with lib/rfc1035.c section 79 Disk IO Routines section 79 Squid-side DISKD I/O functions. @@ -130,8 +135,14 @@ section 85 Client-side Request Routines section 86 ESI processing section 87 Client-side Stream routines. section 88 Client-side Reply Routines -section 89 NAT / IP Interception +section 89 EUI-48 Lookup +section 89 EUI-64 Handling +section 89 NAT / IP Interception section 90 HTTP Cache Control Header section 90 Storage Manager Client-Side Interface section 92 Storage File System +section 93 Adaptation +section 93 eCAP Interface section 93 ICAP (RFC 3507) Client +section -- External DISKD process implementation. +section -- Unlink Daemon diff --git a/doc/mk-debugs.sh b/doc/mk-debugs.sh deleted file mode 100755 index 2a6d293be2..0000000000 --- a/doc/mk-debugs.sh +++ /dev/null @@ -1,5 +0,0 @@ -cat ../{src,lib,include}/*{.,/*.,/*/*.,/*/*/*.}{c,cc,h} 2>/dev/null \ - | grep " DEBUG:" \ - | sed -e 's/ \* DEBUG: //' \ - | sort -u \ - | sort -n diff --git a/lib/hash.c b/lib/hash.c index be3a3c0172..5a410ab362 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -2,7 +2,7 @@ /* * $Id$ * - * DEBUG: section 0 Hash Tables + * DEBUG: section 00 Hash Tables * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/scripts/srcformat.sh b/scripts/source-maintenance.sh old mode 100755 new mode 100644 similarity index 78% rename from scripts/srcformat.sh rename to scripts/source-maintenance.sh index 7777599127..3c720b9bfc --- a/scripts/srcformat.sh +++ b/scripts/source-maintenance.sh @@ -1,5 +1,10 @@ #!/bin/sh # +# This script contains the code run to perform automatic source maintenance +# + +## Source Code Format Enforcement +# # A checker to recursively reformat all source files: .h .c .cc .cci # using a custom astyle formatter and to use MD5 to validate that # the formatter has not altered the code syntax. @@ -55,3 +60,12 @@ for FILENAME in `ls -1`; do fi done + +# +# DEBUG Section listing maintenance +# +cat ${ROOT}/{compat,src,lib,include}/*{.,/*.,/*/*.,/*/*/*.}{c,cc,h} 2>/dev/null \ + | grep " DEBUG:" \ + | sed -e 's/ \* DEBUG: //' \ + | sort -u \ + | sort -n >${ROOT}/doc/debug-sections.txt diff --git a/src/CommRead.h b/src/CommRead.h index 49252748aa..0d36677538 100644 --- a/src/CommRead.h +++ b/src/CommRead.h @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 5 Comms + * DEBUG: section 05 Comm * AUTHOR: Robert Collins * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/ConfigOption.cc b/src/ConfigOption.cc index 00cb31d264..6cd1deece7 100644 --- a/src/ConfigOption.cc +++ b/src/ConfigOption.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 3 Configuration File Parsing + * DEBUG: section 03 Configuration File Parsing * AUTHOR: Robert Collins * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/ConnectionDetail.h b/src/ConnectionDetail.h index 393fb2aebd..1c5ea36947 100644 --- a/src/ConnectionDetail.h +++ b/src/ConnectionDetail.h @@ -1,5 +1,5 @@ /* - * DEBUG: section 5 Socket Functions + * DEBUG: section 05 Socket Functions * AUTHOR: Robert Collins * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/Debug.h b/src/Debug.h index 1a30f17c9a..79073ab108 100644 --- a/src/Debug.h +++ b/src/Debug.h @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 0 Debug Routines + * DEBUG: section 00 Debug Routines * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/DelayConfig.h b/src/DelayConfig.h index eedcccf375..6f0199c1d6 100644 --- a/src/DelayConfig.h +++ b/src/DelayConfig.h @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 3 Configuration Settings + * DEBUG: section 03 Configuration Settings * AUTHOR: Robert Collins * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/DescriptorSet.cc b/src/DescriptorSet.cc index 0243ed72c2..ed3ec30fbd 100644 --- a/src/DescriptorSet.cc +++ b/src/DescriptorSet.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 5 Comm + * DEBUG: section 05 Comm */ #include "DescriptorSet.h" diff --git a/src/EventLoop.cc b/src/EventLoop.cc index d1861f56f4..cae15a65df 100644 --- a/src/EventLoop.cc +++ b/src/EventLoop.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 1 Main Loop + * DEBUG: section 01 Main Loop * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/Parsing.cc b/src/Parsing.cc index 65776f8700..85c7fbf48c 100644 --- a/src/Parsing.cc +++ b/src/Parsing.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 3 Configuration File Parsing + * DEBUG: section 03 Configuration File Parsing * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/Parsing.h b/src/Parsing.h index 062970d590..9bae0d6d20 100644 --- a/src/Parsing.h +++ b/src/Parsing.h @@ -2,7 +2,7 @@ /* * $Id$ * - * DEBUG: section 3 Configuration File Parsing + * DEBUG: section 03 Configuration File Parsing * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/adaptation/Initiate.cc b/src/adaptation/Initiate.cc index 8d95daea67..110c4108ba 100644 --- a/src/adaptation/Initiate.cc +++ b/src/adaptation/Initiate.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 93 ICAP (RFC 3507) Client + * DEBUG: section 93 ICAP (RFC 3507) Client */ #include "squid.h" diff --git a/src/adaptation/Initiator.cc b/src/adaptation/Initiator.cc index efbfa4821b..d5ba04223e 100644 --- a/src/adaptation/Initiator.cc +++ b/src/adaptation/Initiator.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 93 ICAP (RFC 3507) Client + * DEBUG: section 93 ICAP (RFC 3507) Client */ #include "squid.h" diff --git a/src/adaptation/Iterator.cc b/src/adaptation/Iterator.cc index afd8e294e0..a85932dfca 100644 --- a/src/adaptation/Iterator.cc +++ b/src/adaptation/Iterator.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 93 Adaptation + * DEBUG: section 93 Adaptation */ #include "squid.h" diff --git a/src/adaptation/Message.cc b/src/adaptation/Message.cc index fb525d1bb9..dd5ce3867f 100644 --- a/src/adaptation/Message.cc +++ b/src/adaptation/Message.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section XXX + * DEBUG: section 93 Adaptation */ #include "squid.h" diff --git a/src/adaptation/Service.cc b/src/adaptation/Service.cc index 4ec83226e4..4ce90e8e2b 100644 --- a/src/adaptation/Service.cc +++ b/src/adaptation/Service.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section XXX + * DEBUG: section 93 Adaptation */ #include "squid.h" diff --git a/src/adaptation/ServiceConfig.cc b/src/adaptation/ServiceConfig.cc index ade70ddc1f..5372b3c78a 100644 --- a/src/adaptation/ServiceConfig.cc +++ b/src/adaptation/ServiceConfig.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section XXX + * DEBUG: section 93 Adaptation */ #include "squid.h" diff --git a/src/adaptation/ecap/Config.cc b/src/adaptation/ecap/Config.cc index 17d30c8e07..70222f951b 100644 --- a/src/adaptation/ecap/Config.cc +++ b/src/adaptation/ecap/Config.cc @@ -1,8 +1,7 @@ - /* * $Id$ + * DEBUG: section 93 eCAP Interface */ - #include "squid.h" #include diff --git a/src/adaptation/ecap/Config.h b/src/adaptation/ecap/Config.h index 03fd5380c6..3b0618a0cd 100644 --- a/src/adaptation/ecap/Config.h +++ b/src/adaptation/ecap/Config.h @@ -1,7 +1,6 @@ - /* * $Id$ - * + * DEBUG: section 93 eCAP Interface */ #ifndef SQUID_ECAP_CONFIG_H diff --git a/src/adaptation/ecap/Host.cc b/src/adaptation/ecap/Host.cc index 48f9d65f67..53ee6fdd3c 100644 --- a/src/adaptation/ecap/Host.cc +++ b/src/adaptation/ecap/Host.cc @@ -1,3 +1,6 @@ +/* + * DEBUG: section 93 eCAP Interface + */ #include "squid.h" #include #include diff --git a/src/adaptation/ecap/Host.h b/src/adaptation/ecap/Host.h index 481927bd2b..85f257bf55 100644 --- a/src/adaptation/ecap/Host.h +++ b/src/adaptation/ecap/Host.h @@ -1,6 +1,6 @@ - /* * $Id$ + * DEBUG: section 93 eCAP Interface */ #ifndef SQUID_ECAP_HOST_H diff --git a/src/adaptation/ecap/MessageRep.cc b/src/adaptation/ecap/MessageRep.cc index 795769e0df..f95afcf94a 100644 --- a/src/adaptation/ecap/MessageRep.cc +++ b/src/adaptation/ecap/MessageRep.cc @@ -1,7 +1,6 @@ /* - * DEBUG: section XXX + * DEBUG: section 93 eCAP Interface */ - #include "squid.h" #include "HttpRequest.h" #include "HttpReply.h" diff --git a/src/adaptation/ecap/MessageRep.h b/src/adaptation/ecap/MessageRep.h index cd7fcb32a7..ba641937b5 100644 --- a/src/adaptation/ecap/MessageRep.h +++ b/src/adaptation/ecap/MessageRep.h @@ -1,6 +1,6 @@ - /* * $Id$ + * DEBUG: section 93 eCAP Interface */ #ifndef SQUID__ECAP__MESSAGE_REP_H diff --git a/src/adaptation/ecap/ServiceRep.cc b/src/adaptation/ecap/ServiceRep.cc index 162c4305b9..abfc45f116 100644 --- a/src/adaptation/ecap/ServiceRep.cc +++ b/src/adaptation/ecap/ServiceRep.cc @@ -1,3 +1,6 @@ +/* + * DEBUG: section 93 eCAP Interface + */ #include "squid.h" #include #include "adaptation/ecap/ServiceRep.h" diff --git a/src/adaptation/ecap/ServiceRep.h b/src/adaptation/ecap/ServiceRep.h index f80f0f4206..ed4c7d376c 100644 --- a/src/adaptation/ecap/ServiceRep.h +++ b/src/adaptation/ecap/ServiceRep.h @@ -1,6 +1,6 @@ - /* * $Id$ + * DEBUG: section 93 eCAP Interface */ #ifndef SQUID_ECAP_SERVICE_REP_H diff --git a/src/adaptation/ecap/XactionRep.cc b/src/adaptation/ecap/XactionRep.cc index 219c2889f2..d73e10d00d 100644 --- a/src/adaptation/ecap/XactionRep.cc +++ b/src/adaptation/ecap/XactionRep.cc @@ -1,3 +1,6 @@ +/* + * DEBUG: section 93 eCAP Interface + */ #include "squid.h" #include #include diff --git a/src/adaptation/ecap/XactionRep.h b/src/adaptation/ecap/XactionRep.h index 542698dc33..2930e9e5fd 100644 --- a/src/adaptation/ecap/XactionRep.h +++ b/src/adaptation/ecap/XactionRep.h @@ -1,6 +1,6 @@ - /* * $Id$ + * DEBUG: section 93 eCAP Interface */ #ifndef SQUID_ECAP_XACTION_REP_H diff --git a/src/adaptation/icap/Launcher.cc b/src/adaptation/icap/Launcher.cc index d95c3377f1..943994b1a8 100644 --- a/src/adaptation/icap/Launcher.cc +++ b/src/adaptation/icap/Launcher.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 93 ICAP (RFC 3507) Client + * DEBUG: section 93 ICAP (RFC 3507) Client */ #include "squid.h" diff --git a/src/base/AsyncJob.cc b/src/base/AsyncJob.cc index 19559f8e78..11efc212ad 100644 --- a/src/base/AsyncJob.cc +++ b/src/base/AsyncJob.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 93 ICAP (RFC 3507) Client + * DEBUG: section 93 ICAP (RFC 3507) Client */ #include "squid.h" diff --git a/src/cache_cf.cc b/src/cache_cf.cc index c391c34f05..0f4788c25b 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 3 Configuration File Parsing + * DEBUG: section 03 Configuration File Parsing * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/client_db.cc b/src/client_db.cc index 125aef24f8..2a6fca0bd5 100644 --- a/src/client_db.cc +++ b/src/client_db.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 0 Client Database + * DEBUG: section 00 Client Database * AUTHOR: Duane Wessels * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/comm.cc b/src/comm.cc index 99245001bb..25fbda66a7 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 5 Socket Functions + * DEBUG: section 05 Socket Functions * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/comm/ListenStateData.cc b/src/comm/ListenStateData.cc index 8f6e481d4f..d3c44469da 100644 --- a/src/comm/ListenStateData.cc +++ b/src/comm/ListenStateData.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 5 Listener Socket Handler + * DEBUG: section 05 Listener Socket Handler * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/comm_epoll.cc b/src/comm_epoll.cc index c0e72db30d..56ee42f82f 100644 --- a/src/comm_epoll.cc +++ b/src/comm_epoll.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 5 Socket Functions + * DEBUG: section 05 Socket Functions * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- diff --git a/src/comm_kqueue.cc b/src/comm_kqueue.cc index f0b30b18a1..e420c4f0b9 100644 --- a/src/comm_kqueue.cc +++ b/src/comm_kqueue.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 5 Socket Functions + * DEBUG: section 05 Socket Functions * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- diff --git a/src/comm_poll.cc b/src/comm_poll.cc index 82be872279..a77ac2dbc8 100644 --- a/src/comm_poll.cc +++ b/src/comm_poll.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 5 Socket Functions + * DEBUG: section 05 Socket Functions * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- diff --git a/src/comm_select.cc b/src/comm_select.cc index 2e5df7358a..feb1045040 100644 --- a/src/comm_select.cc +++ b/src/comm_select.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 5 Socket Functions + * DEBUG: section 05 Socket Functions * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- diff --git a/src/comm_select_win32.cc b/src/comm_select_win32.cc index c0a550f3e5..bbfec59ea0 100644 --- a/src/comm_select_win32.cc +++ b/src/comm_select_win32.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 5 Socket Functions + * DEBUG: section 05 Socket Functions * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- diff --git a/src/debug.cc b/src/debug.cc index b82ffdd878..710202ff77 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 0 Debug Routines + * DEBUG: section 00 Debug Routines * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/disk.cc b/src/disk.cc index e429c641a4..a2ff08dabe 100644 --- a/src/disk.cc +++ b/src/disk.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 6 Disk I/O Routines + * DEBUG: section 06 Disk I/O Routines * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/dnsserver.cc b/src/dnsserver.cc index 280ce2b075..771c7f4f5d 100644 --- a/src/dnsserver.cc +++ b/src/dnsserver.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 0 DNS Resolver + * DEBUG: section 00 DNS Resolver Daemon * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/errorpage.cc b/src/errorpage.cc index 9df2866897..30b165fb77 100644 --- a/src/errorpage.cc +++ b/src/errorpage.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 4 Error Generation + * DEBUG: section 04 Error Generation * AUTHOR: Duane Wessels * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/errorpage.h b/src/errorpage.h index c02d8f1ff6..b7099e0b77 100644 --- a/src/errorpage.h +++ b/src/errorpage.h @@ -1,5 +1,5 @@ /* - * DEBUG: section 4 Error Generation + * DEBUG: section 04 Error Generation * AUTHOR: Duane Wessels * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/eui/Eui48.cc b/src/eui/Eui48.cc index 752434255d..b9311984ab 100644 --- a/src/eui/Eui48.cc +++ b/src/eui/Eui48.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section ?? EUI Lookup + * DEBUG: section 89 EUI-48 Lookup * AUTHOR: Duane Wessels * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/eui/Eui64.cc b/src/eui/Eui64.cc index 1c6d332c32..89b7a31aaa 100644 --- a/src/eui/Eui64.cc +++ b/src/eui/Eui64.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section ?? EUI-64 Handling + * DEBUG: section 89 EUI-64 Handling * AUTHOR: Amos Jeffries * * Copyright (c) 2009, Amos Jeffries diff --git a/src/filemap.cc b/src/filemap.cc index 389e824b12..e7dcc6b034 100644 --- a/src/filemap.cc +++ b/src/filemap.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 8 Swap File Bitmap + * DEBUG: section 08 Swap File Bitmap * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/ftp.cc b/src/ftp.cc index 4cf5be5900..89f3dd0913 100644 --- a/src/ftp.cc +++ b/src/ftp.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 9 File Transfer Protocol (FTP) + * DEBUG: section 09 File Transfer Protocol (FTP) * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/icmp/IcmpConfig.h b/src/icmp/IcmpConfig.h index 19ad075e18..71dc258f49 100644 --- a/src/icmp/IcmpConfig.h +++ b/src/icmp/IcmpConfig.h @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 3 Configuration Settings + * DEBUG: section 03 Configuration Settings * AUTHOR: Amos Jeffries * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/ip/Address.cc b/src/ip/Address.cc index 86a32f3196..0fc8cf9b49 100644 --- a/src/ip/Address.cc +++ b/src/ip/Address.cc @@ -1,5 +1,5 @@ /* - * DEBUG: section 14 IP Storage and Handling + * DEBUG: section 14 IP Storage and Handling * AUTHOR: Amos Jeffries * * SQUID Internet Object Cache http://squid.nlanr.net/Squid/ diff --git a/src/main.cc b/src/main.cc index 761acc045e..3f57ae7ac9 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 1 Startup and Main Loop + * DEBUG: section 01 Startup and Main Loop * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/multicast.cc b/src/multicast.cc index 44b62aa7cb..b3795e1ef3 100644 --- a/src/multicast.cc +++ b/src/multicast.cc @@ -2,7 +2,7 @@ /* * $Id$ * - * DEBUG: section 7 Multicast + * DEBUG: section 07 Multicast * AUTHOR: Martin Hamilton * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/recv-announce.cc b/src/recv-announce.cc index 2ba3c407f3..9a7fdcb767 100644 --- a/src/recv-announce.cc +++ b/src/recv-announce.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 0 Announcement Server + * DEBUG: section 00 Announcement Server * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/tests/stub_cache_cf.cc b/src/tests/stub_cache_cf.cc index 0d2932a02c..9c3e7fb7ca 100644 --- a/src/tests/stub_cache_cf.cc +++ b/src/tests/stub_cache_cf.cc @@ -1,7 +1,7 @@ /* * $Id$ * - * DEBUG: section 3 Configuration File Parsing + * DEBUG: section 03 Configuration File Parsing * AUTHOR: Robert Collins * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/ufsdump.cc b/src/ufsdump.cc index 44f71c8dc3..72c0273b61 100644 --- a/src/ufsdump.cc +++ b/src/ufsdump.cc @@ -1,8 +1,7 @@ - /* * $Id$ * - * DEBUG: section 0 UFS Store Dump + * DEBUG: section 00 UFS Store Dump Tool * AUTHOR: Robert Collins * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/unlinkd.cc b/src/unlinkd.cc index 709b353275..d0eed07c13 100644 --- a/src/unlinkd.cc +++ b/src/unlinkd.cc @@ -2,7 +2,7 @@ /* * $Id$ * - * DEBUG: section 2 Unlink Daemon + * DEBUG: section 02 Unlink Daemon * AUTHOR: Duane Wessels * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/unlinkd_daemon.cc b/src/unlinkd_daemon.cc index f372e74e59..8ad87dd08c 100644 --- a/src/unlinkd_daemon.cc +++ b/src/unlinkd_daemon.cc @@ -2,7 +2,7 @@ /* * $Id$ * - * DEBUG: - Unlink Daemon + * DEBUG: section -- Unlink Daemon * AUTHOR: Duane Wessels * * SQUID Web Proxy Cache http://www.squid-cache.org/ diff --git a/src/wordlist.cc b/src/wordlist.cc index ccd4fae3a5..39918070d3 100644 --- a/src/wordlist.cc +++ b/src/wordlist.cc @@ -2,7 +2,7 @@ /* * $Id$ * - * DEBUG: section 3 Configuration File Parsing + * DEBUG: section 03 Configuration File Parsing * AUTHOR: Harvest Derived * * SQUID Web Proxy Cache http://www.squid-cache.org/