]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests/server: drop `memdebug.h`
authorViktor Szakats <commit@vsz.me>
Sat, 21 Jun 2025 22:56:10 +0000 (00:56 +0200)
committerViktor Szakats <commit@vsz.me>
Sun, 22 Jun 2025 07:00:53 +0000 (09:00 +0200)
It's no longer used in any build configuration.

Follow-up to fffec3d7e90b032a03eee2192e68f8baf913b3b4 #17629

Closes #17700

tests/server/dnsd.c
tests/server/getpart.c
tests/server/mqttd.c
tests/server/resolve.c
tests/server/rtspd.c
tests/server/sockfilt.c
tests/server/socksd.c
tests/server/sws.c
tests/server/tftpd.c

index 6bb04e0c576b2177fc8a534f9305e289f9e9a7e8..d19d0344b1748028e3bbd30f4862f35911f7a7f0 100644 (file)
@@ -48,9 +48,6 @@
 #include <curlx.h> /* from the private lib dir */
 #include "getpart.h"
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 static int dnsd_wrotepidfile = 0;
 static int dnsd_wroteportfile = 0;
 
index ae64becd4f2caabbd3bafd628568c30a1bb3c7dc..b881837055dfc65606af50ac65698a5320d0423f 100644 (file)
@@ -27,9 +27,6 @@
 #include <curlx.h> /* from the private lib dir */
 #include "curl_memory.h"
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 #define EAT_SPACE(p) while(*(p) && ISSPACE(*(p))) (p)++
 
 #define EAT_WORD(p)  while(*(p) && !ISSPACE(*(p)) && ('>' != *(p))) (p)++
index 57ebf22a500784eddd05963939397d319cef36c6..ef71460542f764ade1c8f3b18ceba1cdbca87cd5 100644 (file)
@@ -55,9 +55,6 @@
 #include <curlx.h> /* from the private lib dir */
 #include "getpart.h"
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 #define MQTT_MSG_CONNECT    0x10
 #define MQTT_MSG_CONNACK    0x20
 #define MQTT_MSG_PUBLISH    0x30
index cf13c12caf692827bcadbb4fbe6b30df24993a5d..70d28a21b3bf9df55b5238464c23081b73f761b0 100644 (file)
@@ -44,9 +44,6 @@
 #include <netdb.h>
 #endif
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 static int test_resolve(int argc, char *argv[])
 {
   int arg = 1;
index 211759e4fb44e535f5c55a585907188c27047e21..8de70566c206ff6265a36d0c8613c11fb001e8a8 100644 (file)
@@ -51,9 +51,6 @@
 #include <curlx.h> /* from the private lib dir */
 #include "getpart.h"
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 #undef REQBUFSIZ
 #define REQBUFSIZ 150000
 
index 7f28facc367b71724d56e314f306af8ac43d9d65..494cad156bc53dde2fca3fd4cddfc08095824d4b 100644 (file)
 
 #include <curlx.h> /* from the private lib dir */
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 /* buffer is this excessively large only to be able to support things like
   test 1003 which tests exceedingly large server response lines */
 #define BUFFER_SIZE 17010
index b6d7794c8a206d27be567edbf7a7858731efd156..46e4b4d88c6ff0a580bae3e01085a104d791b33c 100644 (file)
@@ -75,9 +75,6 @@
 
 #include <curlx.h> /* from the private lib dir */
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 static const char *backendaddr = "127.0.0.1";
 static unsigned short backendport = 0; /* default is use client's */
 
index 4e78649bc892ff92caedf5249a2514eec83f1180..8c818f3d26d16743935181bbad8ce3472b46599f 100644 (file)
@@ -52,9 +52,6 @@
 #include <curlx.h> /* from the private lib dir */
 #include "getpart.h"
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 static bool use_gopher = FALSE;
 static bool is_proxy = FALSE;
 
index 9fceac28d066851eb9fd17b1fb462d556f1d772e..a59093694460c86d7ff58b29414d7c4d867a5fb9 100644 (file)
@@ -121,9 +121,6 @@ struct tftphdr {
 #define TFTP_ENOUSER   7
 /****************************************************************************/
 
-/* include memdebug.h last */
-#include <memdebug.h>
-
 /*****************************************************************************
 *                      STRUCT DECLARATIONS AND DEFINES                       *
 *****************************************************************************/