From 0b030a5b232bd9fc4fed90f0d1aaac69c189aa22 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 26 Jan 2020 17:51:01 +0100 Subject: global_init: move the IPv6 works status bool to multi handle Previously it was stored in a global state which contributed to curl_global_init's thread unsafety. This boolean is now instead figured out in curl_multi_init() and stored in the multi handle. Less effective, but thread safe. Closes #4851 --- lib/hostip.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/hostip.h') diff --git a/lib/hostip.h b/lib/hostip.h index e0597ea96..a1c343ad7 100644 --- a/lib/hostip.h +++ b/lib/hostip.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2019, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -96,9 +96,9 @@ int Curl_resolv_timeout(struct connectdata *conn, const char *hostname, /* * Curl_ipv6works() returns TRUE if IPv6 seems to work. */ -bool Curl_ipv6works(void); +bool Curl_ipv6works(struct connectdata *conn); #else -#define Curl_ipv6works() FALSE +#define Curl_ipv6works(x) FALSE #endif /* -- cgit v1.2.3