From: Amos Jeffries Date: Wed, 26 May 2010 04:00:23 +0000 (+1200) Subject: Add source-maintenance.sh to perform automated Maintenance Updates X-Git-Tag: SQUID_3_1_4~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf465c10b7d23322ef82f68310b501b502a13304;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 0db0e8476c..a02bff65e6 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 5a69bcd78e..519a5a159a 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 7c38259156..8120c341d6 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 57656174a7..595bab9dcb 100644 --- a/src/Parsing.cc +++ b/src/Parsing.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/ diff --git a/src/Parsing.h b/src/Parsing.h index b18dc5e436..69882a54a5 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 1b903faf0a..6ff122c718 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 ee4bac6500..8e1dba460a 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 62995d2661..0c24801eff 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 06e6cd34c8..4a7dbb0506 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 be8027aafd..e4188306c6 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 "TextException.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 c78a1096d7..6f673422a7 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 313a8b275b..180a114d84 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 4b4fb6ad07..7db50ad340 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 cdaab23565..639efb1eda 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 93aa383457..77697e2f37 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 9eb4a75d1e..36e9054c6f 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_epoll.cc b/src/comm_epoll.cc index 9d9031430b..a0fd9672b3 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 7c785a412f..c6a1931e03 100644 --- a/src/comm_poll.cc +++ b/src/comm_poll.cc @@ -2,7 +2,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 d527b42275..e82c945793 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 f099f8b70d..1d280ec552 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 db9f2478f8..32813bffdb 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 d112d59ce2..871af9155c 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 b1ce41b701..08bf0ae14e 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 d803780975..653afaeda6 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/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 78d869470d..745c684489 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 7ba504c7c5..742e0e685d 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/IpAddress.cc b/src/ip/IpAddress.cc index 14a083cd1e..aea1872850 100644 --- a/src/ip/IpAddress.cc +++ b/src/ip/IpAddress.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 a6bd4127ed..876814f1bd 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 29819b4ef0..61a58e7d16 100644 --- a/src/recv-announce.cc +++ b/src/recv-announce.cc @@ -2,7 +2,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 f3b16aec26..1275dc3286 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/