]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Maintenance: stop using doxygen bug markers (#1445)
authorAmos Jeffries <yadij@users.noreply.github.com>
Tue, 8 Aug 2023 19:16:24 +0000 (19:16 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Wed, 9 Aug 2023 12:57:06 +0000 (12:57 +0000)
squid.dox
src/DiskIO/AIO/AIODiskFile.h
src/fs/ufs/RebuildState.h
src/http.cc
src/icmp/Icmp.h
src/icmp/IcmpSquid.cc

index 6ab528fb9809ebea37a6b9300dd62238cdb2e838..e9c12eab7cc4c0a2404f0ae6e6cb3499204bc509 100644 (file)
--- a/squid.dox
+++ b/squid.dox
@@ -632,7 +632,7 @@ GENERATE_TESTLIST      = YES
 # list. This list is created by putting \bug commands in the documentation.
 # The default value is: YES.
 
-GENERATE_BUGLIST       = YES
+GENERATE_BUGLIST       = NO
 
 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
 # the deprecated list. This list is created by putting \deprecated commands in
index 707aed19740aa4a762660a2ddc840a96563d28d4..fa39824851aef659642aeb8fdb6d99ac561e060b 100644 (file)
@@ -28,7 +28,7 @@ public:
     AIODiskFile (char const *path, AIODiskIOStrategy *);
     ~AIODiskFile() override;
 
-    /// \bug the code has this as "IORequestor::Pointer callback"
+    // XXX: the code has this as "IORequestor::Pointer callback"
     void open(int flags, mode_t mode, RefCount<IORequestor> callback) override;
 
     void create (int, mode_t, RefCount<IORequestor>) override;
index a1591e91a37ec1cce16a4e7c33d38fa0ec2d896c..7e33fc813d38df745290591d05b787e9921f26c1 100644 (file)
@@ -75,7 +75,7 @@ private:
     int getNextFile(sfileno *, int *size);
     bool fromLog;
     bool _done;
-    /// \bug (callback) should be hidden behind a proper human readable name
+    // TODO: (callback) should be hidden behind a proper human readable name
     void (callback)(void *cbdata);
     void *cbdata;
 };
index acdecb3e43bf394fbf4cab0bbb174108dcb7f1bd..7ed3189a177d57ca86f10f087d6ed48f70fec25b 100644 (file)
@@ -1095,11 +1095,10 @@ HttpStateData::statusIfComplete() const
     /** \par
      * What does the reply have to say about keep-alive?
      */
-    /**
-     \bug XXX BUG?
+    /* XXX: BUG?
      * If the origin server (HTTP/1.0) does not send a keep-alive
      * header, but keeps the connection open anyway, what happens?
-     * We'll return here and http.c waits for an EOF before changing
+     * We'll return here and wait for an EOF before changing
      * store_status to STORE_OK.   Combine this with ENTRY_FWD_HDR_WAIT
      * and an error status code, and we might have to wait until
      * the server times out the socket.
index e1227c0cfb5bf5e5d0b9e324497cf4cc97cd15cf..a24de2d0cc18e55df7b241c840065e9a5241df68 100644 (file)
@@ -109,8 +109,8 @@ protected:
      \param ttl n(129...192) : 64 >= n >= 1
      \param ttl n(193...)    : n < 255
      *
-     \bug BUG? ttl<0 can produce high hop values
-     \bug BUG? ttl>255 can produce zero or negative hop values
+     * XXX: BUG? ttl<0 can produce high hop values
+     * XXX: BUG? ttl>255 can produce zero or negative hop values
      */
     int ipHops(int ttl);
 
index f334d10e7aa66948bcb84b82543501146cd27d50..988aa0ce02ca0fa9ad62a3c8377388e2e3a3342b 100644 (file)
@@ -64,8 +64,8 @@ IcmpSquid::SendEcho(Ip::Address &to, int opcode, const char *payload, int len)
         len = 0;
 
     /** \li Otherwise if len is 0, uses strlen() to detect length of payload.
-     \bug This will result in part of the payload being truncated if it contains a NULL character.
-     \bug Or it may result in a buffer over-run if the payload is not nul-terminated properly.
+     * XXX: This will result in part of the payload being truncated if it contains a NUL character.
+     *      Or it may result in a buffer over-read if the payload is not NUL-terminated properly.
      */
     else if (payload && len == 0)
         len = strlen(payload);