• Home
  • Raw
  • Download

Lines Matching +full:zstd +full:- +full:dll

1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - curl_version (3)
10 - All
11 ---
15 curl_version_info - returns runtime libcurl version info
37 or not, instead of using compile-time checks, as dynamic/DLL libraries can be
41 curl_global_init(3) has not been called. It is therefore not thread-safe
89 const char *cainfo; /* the built-in default CURLOPT_CAINFO, might
91 const char *capath; /* the built-in default CURLOPT_CAPATH, might
95 unsigned int zstd_ver_num; /* Numeric Zstd version
153 ## alt-svc
157 HTTP Alt-Svc parsing and the associated options (Added in 7.64.1)
181 *features* mask bit: non-existent
189 libcurl was built with libgsasl and thus with some extra SCRAM-SHA
192 ## GSS-API
196 libcurl was built with support for GSS-API. This makes libcurl use provided
219 HTTP/3 and QUIC support are built-in (Added in 7.66.0)
221 ## HTTPS-proxy
225 libcurl was built with support for HTTPS-proxy.
294 GSS-API Negotiation Mechanism, defined in RFC 2478.) (added in 7.10.8)
307 makes libcurl use Windows-provided functions for Kerberos, NTLM, SPNEGO and
315 libcurl was built with thread-safety support (Atomic or SRWLOCK) to protect
316 curl initialization. (Added in 7.84.0) See libcurl-thread(3)
318 ## TLS-SRP
322 libcurl was built with support for TLS-SRP (in one or more of the built-in TLS
336 libcurl was built with Unicode support on Windows. This makes non-ASCII
346 ## zstd section in FEATURES
350 supports HTTP zstd content encoding using zstd library (Added in 7.72.0)
364 supports HTTP GSS-Negotiate (added in 7.10.6, deprecated in 7.38.0)
379 (ver->version_num >> 16) & 0xff,
380 (ver->version_num >> 8) & 0xff,
381 ver->version_num & 0xff);