Lines Matching +full:- +full:- +full:without +full:- +full:nghttp2
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * SPDX-License-Identifier: curl
28 #include <nghttp2/nghttp2.h>
67 /* Ignore -Wvla warnings in brotli headers */
69 #pragma GCC diagnostic ignored "-Wvla"
105 unsigned int minor = (unsigned int)((zstd_version - in zstd_version()
107 unsigned int patch = (unsigned int)(zstd_version - in zstd_version()
108 (major * 100 * 100) - (minor * 100)); in zstd_version()
116 * It is implemented to work multi-threaded by making sure repeated invokes
193 brotli_version(&br_version[7], sizeof(br_version) - 7); in curl_version()
197 zstd_version(&zst_version[5], sizeof(zst_version) - 5); in curl_version()
202 "c-ares/%s", ares_version(NULL)); in curl_version()
264 ((api.ldapai_vendor_version - major * 10000) - patch) / 100; in curl_version()
286 outlen--; in curl_version()
290 outlen -= n; in curl_version()
397 * Feature presence run-time check functions.
406 return info->libidn != NULL; in idn_present()
446 FEATURE("alt-svc", NULL, CURL_VERSION_ALTSVC),
464 FEATURE("GSS-API", NULL, CURL_VERSION_GSSAPI),
477 FEATURE("HTTPS-proxy", https_proxy_present, CURL_VERSION_HTTPS_PROXY),
517 FEATURE("TLS-SRP", NULL, CURL_VERSION_TLSAUTH_SRP),
542 OS, /* as found by configure or set by hand at build-time */
543 0, /* features bitmask is built at run-time */
548 NULL, /* c-ares version */
549 0, /* c-ares version numerical */
555 0, /* nghttp2 version number */
556 NULL, /* nghttp2 version string */
608 /* libz left NULL if non-existing */ in curl_version_info()
643 version_info.nghttp2_ver_num = h2->version_num; in curl_version_info()
644 version_info.nghttp2_version = h2->version_str; in curl_version_info()
672 for(p = features_table; p->name; p++) in curl_version_info()
673 if(!p->present || p->present(&version_info)) { in curl_version_info()
674 features |= p->bitmask; in curl_version_info()
675 feature_names[n++] = p->name; in curl_version_info()