mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:31:41 +03:00
asyn-thread: use c-ares to resolve HTTPS RR
Allow building with c-ares and yet use threaded resolver for the main host A/AAAA resolving: `--with-ares` provides the c-ares install path and defaults to use c-ares for name resolving `--with-threaded-resolver` still uses c-ares in the build (for HTTPS) but uses the threaded resolver for "normal" resolves. It works similarly for cmake: ENABLE_ARES enables ares, and if ENABLE_THREADED_RESOLVER also is set, c-ares is used for HTTPS RR and the threaded resolver for "normal" resolves. HTTPSRR and c-ares-rr are new features return by curl_version_info() and thus shown by curl -V. The c-ares-rr feature bit is there to make it possible to distinguish between builds using c-ares for all name resolves and builds that use the threaded resolves for the regular name resolves and c-ares for HTTPSRR only. "c-ares-rr" means it does not use c-ares for "plain" name resolves. HTTPSRR support is EXPERIMENTAL only. Closes #16054
This commit is contained in:
parent
520e67dd39
commit
0d4fdbf15d
18 changed files with 470 additions and 421 deletions
|
|
@ -467,11 +467,18 @@ static const struct feat features_table[] = {
|
|||
#ifdef HAVE_BROTLI
|
||||
FEATURE("brotli", NULL, CURL_VERSION_BROTLI),
|
||||
#endif
|
||||
#if defined(CURLRES_ARES) && defined(CURLRES_THREADED)
|
||||
FEATURE("c-ares-rr", NULL, 0),
|
||||
#endif
|
||||
#ifdef DEBUGBUILD
|
||||
FEATURE("Debug", NULL, CURL_VERSION_DEBUG),
|
||||
#endif
|
||||
#if defined(USE_SSL) && defined(USE_ECH)
|
||||
FEATURE("ECH", ech_present, 0),
|
||||
|
||||
#ifndef USE_HTTPSRR
|
||||
#error "ECH enabled but not HTTPSRR, must be a config error"
|
||||
#endif
|
||||
#endif
|
||||
#ifdef USE_GSASL
|
||||
FEATURE("gsasl", NULL, CURL_VERSION_GSASL),
|
||||
|
|
@ -492,6 +499,9 @@ static const struct feat features_table[] = {
|
|||
!defined(CURL_DISABLE_HTTP)
|
||||
FEATURE("HTTPS-proxy", https_proxy_present, CURL_VERSION_HTTPS_PROXY),
|
||||
#endif
|
||||
#if defined(USE_HTTPSRR)
|
||||
FEATURE("HTTPSRR", NULL, 0),
|
||||
#endif
|
||||
#if defined(USE_LIBIDN2) || defined(USE_WIN32_IDN) || defined(USE_APPLE_IDN)
|
||||
FEATURE("IDN", idn_present, CURL_VERSION_IDN),
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue