]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
multiif.h: remove Curl_multi_dump declaration
authorStefan Eissing <stefan@eissing.org>
Tue, 26 Sep 2023 07:22:57 +0000 (09:22 +0200)
committerJay Satiro <raysatiro@yahoo.com>
Tue, 26 Sep 2023 07:51:13 +0000 (03:51 -0400)
Follow-up to d850eea2 which removed the Curl_multi_dump definition.

Closes https://github.com/curl/curl/pull/11946

lib/multiif.h

index 7f08ecc614be913f57e9ca4fa7dd27541d63eb4a..7a344fa9fd275781ad3a64cc1791e0acd686f13b 100644 (file)
@@ -62,15 +62,6 @@ struct Curl_multi *Curl_multi_handle(int hashsize, int chashsize,
 /* mask for checking if read and/or write is set for index x */
 #define GETSOCK_MASK_RW(x) (GETSOCK_READSOCK(x)|GETSOCK_WRITESOCK(x))
 
-#ifdef DEBUGBUILD
- /*
-  * Curl_multi_dump is not a stable public function, this is only meant to
-  * allow easier tracking of the internal handle's state and what sockets
-  * they use. Only for research and development DEBUGBUILD enabled builds.
-  */
-void Curl_multi_dump(struct Curl_multi *multi);
-#endif
-
 /* Return the value of the CURLMOPT_MAX_HOST_CONNECTIONS option */
 size_t Curl_multi_max_host_connections(struct Curl_multi *multi);