2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 07:54:11 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2020-01-05 04:51:39 -05:00
|
|
|
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-24 07:54:11 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2000-08-24 10:26:33 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <curl/curl.h>
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
2013-12-17 17:32:47 -05:00
|
|
|
#include "vtls/vtls.h"
|
2013-09-03 17:17:06 -04:00
|
|
|
#include "http2.h"
|
2019-11-17 15:04:37 -05:00
|
|
|
#include "vssh/ssh.h"
|
2019-07-21 17:48:58 -04:00
|
|
|
#include "quic.h"
|
2015-03-03 06:36:18 -05:00
|
|
|
#include "curl_printf.h"
|
2004-06-24 07:54:11 -04:00
|
|
|
|
2004-02-02 11:24:41 -05:00
|
|
|
#ifdef USE_ARES
|
2020-09-21 08:28:40 -04:00
|
|
|
# if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \
|
|
|
|
defined(WIN32)
|
2011-05-19 05:48:32 -04:00
|
|
|
# define CARES_STATICLIB
|
|
|
|
# endif
|
|
|
|
# include <ares.h>
|
2004-02-02 11:24:41 -05:00
|
|
|
#endif
|
|
|
|
|
2016-10-12 03:01:06 -04:00
|
|
|
#ifdef USE_LIBIDN2
|
|
|
|
#include <idn2.h>
|
2004-04-26 03:14:08 -04:00
|
|
|
#endif
|
|
|
|
|
2015-09-29 05:33:01 -04:00
|
|
|
#ifdef USE_LIBPSL
|
|
|
|
#include <libpsl.h>
|
|
|
|
#endif
|
|
|
|
|
2006-08-04 12:10:48 -04:00
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
|
|
|
#include <iconv.h>
|
|
|
|
#endif
|
2002-09-25 11:38:48 -04:00
|
|
|
|
2010-05-15 16:13:17 -04:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
#include <librtmp/rtmp.h>
|
|
|
|
#endif
|
|
|
|
|
2017-11-13 08:20:41 -05:00
|
|
|
#ifdef HAVE_ZLIB_H
|
|
|
|
#include <zlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
#include <brotli/decode.h>
|
|
|
|
#endif
|
|
|
|
|
2020-05-25 11:49:46 -04:00
|
|
|
#ifdef HAVE_ZSTD
|
|
|
|
#include <zstd.h>
|
|
|
|
#endif
|
|
|
|
|
2017-11-05 09:28:16 -05:00
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
static size_t brotli_version(char *buf, size_t bufsz)
|
|
|
|
{
|
|
|
|
uint32_t brotli_version = BrotliDecoderVersion();
|
|
|
|
unsigned int major = brotli_version >> 24;
|
|
|
|
unsigned int minor = (brotli_version & 0x00FFFFFF) >> 12;
|
|
|
|
unsigned int patch = brotli_version & 0x00000FFF;
|
|
|
|
|
2018-11-22 03:01:24 -05:00
|
|
|
return msnprintf(buf, bufsz, "%u.%u.%u", major, minor, patch);
|
2017-11-05 09:28:16 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-05-25 11:49:46 -04:00
|
|
|
#ifdef HAVE_ZSTD
|
|
|
|
static size_t zstd_version(char *buf, size_t bufsz)
|
|
|
|
{
|
|
|
|
unsigned long zstd_version = (unsigned long)ZSTD_versionNumber();
|
|
|
|
unsigned int major = (unsigned int)(zstd_version / (100 * 100));
|
|
|
|
unsigned int minor = (unsigned int)((zstd_version -
|
|
|
|
(major * 100 * 100)) / 100);
|
|
|
|
unsigned int patch = (unsigned int)(zstd_version -
|
|
|
|
(major * 100 * 100) - (minor * 100));
|
|
|
|
|
|
|
|
return msnprintf(buf, bufsz, "%u.%u.%u", major, minor, patch);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-03-01 10:16:19 -05:00
|
|
|
/*
|
|
|
|
* curl_version() returns a pointer to a static buffer.
|
|
|
|
*
|
|
|
|
* It is implemented to work multi-threaded by making sure repeated invokes
|
|
|
|
* generate the exact same string and never write any temporary data like
|
|
|
|
* zeros in the data.
|
|
|
|
*/
|
2020-04-22 05:21:24 -04:00
|
|
|
|
|
|
|
#define VERSION_PARTS 14 /* number of substrings we can concatenate */
|
|
|
|
|
2002-09-25 11:38:48 -04:00
|
|
|
char *curl_version(void)
|
|
|
|
{
|
2020-04-12 17:56:33 -04:00
|
|
|
static char out[300];
|
2020-03-01 10:16:19 -05:00
|
|
|
char *outp;
|
|
|
|
size_t outlen;
|
2020-04-22 05:21:24 -04:00
|
|
|
const char *src[VERSION_PARTS];
|
2020-03-01 10:16:19 -05:00
|
|
|
#ifdef USE_SSL
|
2020-04-12 17:56:33 -04:00
|
|
|
char ssl_version[200];
|
2020-03-01 10:16:19 -05:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
char z_version[40];
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
char br_version[40] = "brotli/";
|
|
|
|
#endif
|
2020-05-25 11:49:46 -04:00
|
|
|
#ifdef HAVE_ZSTD
|
|
|
|
char zst_version[40] = "zstd/";
|
|
|
|
#endif
|
2020-03-01 10:16:19 -05:00
|
|
|
#ifdef USE_ARES
|
|
|
|
char cares_version[40];
|
|
|
|
#endif
|
2020-04-22 05:21:24 -04:00
|
|
|
#if defined(USE_LIBIDN2)
|
2020-03-01 10:16:19 -05:00
|
|
|
char idn_version[40];
|
|
|
|
#endif
|
|
|
|
#ifdef USE_LIBPSL
|
|
|
|
char psl_version[40];
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
|
|
|
char iconv_version[40]="iconv";
|
|
|
|
#endif
|
|
|
|
#ifdef USE_SSH
|
|
|
|
char ssh_version[40];
|
|
|
|
#endif
|
|
|
|
#ifdef USE_NGHTTP2
|
|
|
|
char h2_version[40];
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_QUIC
|
|
|
|
char h3_version[40];
|
|
|
|
#endif
|
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
char rtmp_version[40];
|
|
|
|
#endif
|
|
|
|
int i = 0;
|
|
|
|
int j;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2020-02-01 12:55:24 -05:00
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
/* Override version string when environment variable CURL_VERSION is set */
|
|
|
|
const char *debugversion = getenv("CURL_VERSION");
|
|
|
|
if(debugversion) {
|
|
|
|
strncpy(out, debugversion, sizeof(out)-1);
|
|
|
|
out[sizeof(out)-1] = '\0';
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-03-01 10:16:19 -05:00
|
|
|
src[i++] = LIBCURL_NAME "/" LIBCURL_VERSION;
|
|
|
|
#ifdef USE_SSL
|
|
|
|
Curl_ssl_version(ssl_version, sizeof(ssl_version));
|
|
|
|
src[i++] = ssl_version;
|
|
|
|
#endif
|
2002-09-02 17:59:31 -04:00
|
|
|
#ifdef HAVE_LIBZ
|
2020-03-01 10:16:19 -05:00
|
|
|
msnprintf(z_version, sizeof(z_version), "zlib/%s", zlibVersion());
|
|
|
|
src[i++] = z_version;
|
2003-06-26 07:22:48 -04:00
|
|
|
#endif
|
2017-11-05 09:28:16 -05:00
|
|
|
#ifdef HAVE_BROTLI
|
2020-03-01 10:16:19 -05:00
|
|
|
brotli_version(&br_version[7], sizeof(br_version) - 7);
|
|
|
|
src[i++] = br_version;
|
2017-11-05 09:28:16 -05:00
|
|
|
#endif
|
2020-05-25 11:49:46 -04:00
|
|
|
#ifdef HAVE_ZSTD
|
|
|
|
zstd_version(&zst_version[5], sizeof(zst_version) - 5);
|
|
|
|
src[i++] = zst_version;
|
|
|
|
#endif
|
2004-02-02 11:24:41 -05:00
|
|
|
#ifdef USE_ARES
|
2020-03-01 10:16:19 -05:00
|
|
|
msnprintf(cares_version, sizeof(cares_version),
|
|
|
|
"c-ares/%s", ares_version(NULL));
|
|
|
|
src[i++] = cares_version;
|
2004-02-02 11:24:41 -05:00
|
|
|
#endif
|
2016-10-12 03:01:06 -04:00
|
|
|
#ifdef USE_LIBIDN2
|
2020-04-22 05:21:24 -04:00
|
|
|
msnprintf(idn_version, sizeof(idn_version),
|
|
|
|
"libidn2/%s", idn2_check_version(NULL));
|
2020-03-01 10:16:19 -05:00
|
|
|
src[i++] = idn_version;
|
2020-04-22 05:21:24 -04:00
|
|
|
#elif defined(USE_WIN32_IDN)
|
|
|
|
src[i++] = (char *)"WinIDN";
|
2004-04-26 03:14:08 -04:00
|
|
|
#endif
|
2020-03-01 10:16:19 -05:00
|
|
|
|
2015-09-29 05:33:01 -04:00
|
|
|
#ifdef USE_LIBPSL
|
2020-03-01 10:16:19 -05:00
|
|
|
msnprintf(psl_version, sizeof(psl_version), "libpsl/%s", psl_get_version());
|
|
|
|
src[i++] = psl_version;
|
2010-12-28 13:55:00 -05:00
|
|
|
#endif
|
2006-08-04 12:10:48 -04:00
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
2006-08-15 13:02:24 -04:00
|
|
|
#ifdef _LIBICONV_VERSION
|
2020-03-01 10:16:19 -05:00
|
|
|
msnprintf(iconv_version, sizeof(iconv_version), "iconv/%d.%d",
|
|
|
|
_LIBICONV_VERSION >> 8, _LIBICONV_VERSION & 255);
|
2006-08-15 13:02:24 -04:00
|
|
|
#else
|
2020-03-01 10:16:19 -05:00
|
|
|
/* version unknown, let the default stand */
|
2006-08-15 13:02:24 -04:00
|
|
|
#endif /* _LIBICONV_VERSION */
|
2020-03-01 10:16:19 -05:00
|
|
|
src[i++] = iconv_version;
|
2006-08-04 12:10:48 -04:00
|
|
|
#endif
|
2019-08-16 09:32:05 -04:00
|
|
|
#ifdef USE_SSH
|
2020-03-01 10:16:19 -05:00
|
|
|
Curl_ssh_version(ssh_version, sizeof(ssh_version));
|
|
|
|
src[i++] = ssh_version;
|
2017-10-23 07:49:23 -04:00
|
|
|
#endif
|
2013-09-03 17:17:06 -04:00
|
|
|
#ifdef USE_NGHTTP2
|
2020-03-01 10:16:19 -05:00
|
|
|
Curl_http2_ver(h2_version, sizeof(h2_version));
|
|
|
|
src[i++] = h2_version;
|
2013-09-03 17:17:06 -04:00
|
|
|
#endif
|
2019-07-21 17:48:58 -04:00
|
|
|
#ifdef ENABLE_QUIC
|
2020-03-01 10:16:19 -05:00
|
|
|
Curl_quic_ver(h3_version, sizeof(h3_version));
|
|
|
|
src[i++] = h3_version;
|
2019-07-21 17:48:58 -04:00
|
|
|
#endif
|
2010-05-15 16:13:17 -04:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
{
|
|
|
|
char suff[2];
|
2011-04-20 09:17:42 -04:00
|
|
|
if(RTMP_LIB_VERSION & 0xff) {
|
2010-05-15 16:13:17 -04:00
|
|
|
suff[0] = (RTMP_LIB_VERSION & 0xff) + 'a' - 1;
|
|
|
|
suff[1] = '\0';
|
|
|
|
}
|
2011-04-20 09:17:42 -04:00
|
|
|
else
|
|
|
|
suff[0] = '\0';
|
|
|
|
|
2020-03-01 10:16:19 -05:00
|
|
|
msnprintf(rtmp_version, sizeof(rtmp_version), "librtmp/%d.%d%s",
|
2018-11-22 03:01:24 -05:00
|
|
|
RTMP_LIB_VERSION >> 16, (RTMP_LIB_VERSION >> 8) & 0xff,
|
|
|
|
suff);
|
2020-03-01 10:16:19 -05:00
|
|
|
src[i++] = rtmp_version;
|
2010-05-15 16:13:17 -04:00
|
|
|
}
|
2006-11-02 16:56:40 -05:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2020-04-22 05:21:24 -04:00
|
|
|
DEBUGASSERT(i <= VERSION_PARTS);
|
|
|
|
|
2020-03-01 10:16:19 -05:00
|
|
|
outp = &out[0];
|
|
|
|
outlen = sizeof(out);
|
|
|
|
for(j = 0; j < i; j++) {
|
|
|
|
size_t n = strlen(src[j]);
|
|
|
|
/* we need room for a space, the string and the final zero */
|
|
|
|
if(outlen <= (n + 2))
|
|
|
|
break;
|
|
|
|
if(j) {
|
|
|
|
/* prepend a space if not the first */
|
|
|
|
*outp++ = ' ';
|
|
|
|
outlen--;
|
|
|
|
}
|
|
|
|
memcpy(outp, src[j], n);
|
|
|
|
outp += n;
|
|
|
|
outlen -= n;
|
|
|
|
}
|
|
|
|
*outp = 0;
|
2019-02-15 14:19:00 -05:00
|
|
|
|
2020-03-01 10:16:19 -05:00
|
|
|
return out;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-09-07 00:01:32 -04:00
|
|
|
|
2010-01-22 08:06:50 -05:00
|
|
|
/* data for curl_version_info
|
|
|
|
|
|
|
|
Keep the list sorted alphabetically. It is also written so that each
|
|
|
|
protocol line has its own #if line to make things easier on the eye.
|
|
|
|
*/
|
2002-09-25 03:08:41 -04:00
|
|
|
|
2004-12-20 13:23:43 -05:00
|
|
|
static const char * const protocols[] = {
|
2002-09-25 03:08:41 -04:00
|
|
|
#ifndef CURL_DISABLE_DICT
|
2002-09-30 15:51:05 -04:00
|
|
|
"dict",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_FILE
|
2002-09-30 15:51:05 -04:00
|
|
|
"file",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_FTP
|
2010-01-22 08:06:50 -05:00
|
|
|
"ftp",
|
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_FTP)
|
2002-09-30 15:51:05 -04:00
|
|
|
"ftps",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
2010-08-12 10:55:48 -04:00
|
|
|
#ifndef CURL_DISABLE_GOPHER
|
|
|
|
"gopher",
|
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
"http",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_HTTP)
|
|
|
|
"https",
|
2006-11-02 16:56:40 -05:00
|
|
|
#endif
|
2009-12-12 16:54:01 -05:00
|
|
|
#ifndef CURL_DISABLE_IMAP
|
|
|
|
"imap",
|
2010-01-22 08:06:50 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_IMAP)
|
2009-12-12 16:54:01 -05:00
|
|
|
"imaps",
|
|
|
|
#endif
|
2010-06-01 11:25:03 -04:00
|
|
|
#ifndef CURL_DISABLE_LDAP
|
2010-01-22 08:06:50 -05:00
|
|
|
"ldap",
|
2011-03-07 20:45:33 -05:00
|
|
|
#if !defined(CURL_DISABLE_LDAPS) && \
|
|
|
|
((defined(USE_OPENLDAP) && defined(USE_SSL)) || \
|
|
|
|
(!defined(USE_OPENLDAP) && defined(HAVE_LDAP_SSL)))
|
2010-01-22 08:06:50 -05:00
|
|
|
"ldaps",
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
2010-05-24 18:44:42 -04:00
|
|
|
#endif
|
2020-08-31 03:45:09 -04:00
|
|
|
#ifndef CURL_DISABLE_MQTT
|
2020-04-14 05:19:12 -04:00
|
|
|
"mqtt",
|
|
|
|
#endif
|
2009-12-12 16:54:01 -05:00
|
|
|
#ifndef CURL_DISABLE_POP3
|
|
|
|
"pop3",
|
2010-01-22 08:06:50 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_POP3)
|
2009-12-12 16:54:01 -05:00
|
|
|
"pop3s",
|
|
|
|
#endif
|
2010-05-15 16:13:17 -04:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
"rtmp",
|
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#ifndef CURL_DISABLE_RTSP
|
|
|
|
"rtsp",
|
|
|
|
#endif
|
2020-01-05 04:51:39 -05:00
|
|
|
#if defined(USE_SSH) && !defined(USE_WOLFSSH)
|
2010-01-22 08:06:50 -05:00
|
|
|
"scp",
|
2020-01-05 04:51:39 -05:00
|
|
|
#endif
|
|
|
|
#ifdef USE_SSH
|
2010-01-22 08:06:50 -05:00
|
|
|
"sftp",
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
2020-08-03 04:33:17 -04:00
|
|
|
#if !defined(CURL_DISABLE_SMB) && defined(USE_CURL_NTLM_CORE) && \
|
|
|
|
(CURL_SIZEOF_CURL_OFF_T > 4)
|
2014-11-30 11:18:46 -05:00
|
|
|
"smb",
|
|
|
|
# ifdef USE_SSL
|
|
|
|
"smbs",
|
|
|
|
# endif
|
|
|
|
#endif
|
2009-12-12 16:54:01 -05:00
|
|
|
#ifndef CURL_DISABLE_SMTP
|
|
|
|
"smtp",
|
2010-01-22 08:06:50 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_SMTP)
|
2009-12-12 16:54:01 -05:00
|
|
|
"smtps",
|
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#ifndef CURL_DISABLE_TELNET
|
|
|
|
"telnet",
|
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_TFTP
|
|
|
|
"tftp",
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
|
|
|
|
2002-09-30 15:51:05 -04:00
|
|
|
NULL
|
2002-09-25 03:08:41 -04:00
|
|
|
};
|
|
|
|
|
2002-09-25 11:38:48 -04:00
|
|
|
static curl_version_info_data version_info = {
|
2004-04-26 03:14:08 -04:00
|
|
|
CURLVERSION_NOW,
|
2002-09-25 03:08:41 -04:00
|
|
|
LIBCURL_VERSION,
|
|
|
|
LIBCURL_VERSION_NUM,
|
2002-09-26 09:03:22 -04:00
|
|
|
OS, /* as found by configure or set by hand at build-time */
|
2002-09-25 11:38:48 -04:00
|
|
|
0 /* features is 0 by default */
|
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
| CURL_VERSION_IPV6
|
|
|
|
#endif
|
2005-04-07 11:27:13 -04:00
|
|
|
#ifdef USE_SSL
|
2002-09-26 09:03:22 -04:00
|
|
|
| CURL_VERSION_SSL
|
2005-03-10 18:15:29 -05:00
|
|
|
#endif
|
2005-04-07 11:27:13 -04:00
|
|
|
#ifdef USE_NTLM
|
2005-03-11 10:10:36 -05:00
|
|
|
| CURL_VERSION_NTLM
|
|
|
|
#endif
|
2014-11-09 07:46:00 -05:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) && \
|
|
|
|
defined(NTLM_WB_ENABLED)
|
2011-08-26 12:57:50 -04:00
|
|
|
| CURL_VERSION_NTLM_WB
|
2011-07-18 17:36:36 -04:00
|
|
|
#endif
|
2014-07-21 03:53:45 -04:00
|
|
|
#ifdef USE_SPNEGO
|
|
|
|
| CURL_VERSION_SPNEGO
|
|
|
|
#endif
|
2014-11-16 04:50:06 -05:00
|
|
|
#ifdef USE_KERBEROS5
|
2014-11-07 05:40:01 -05:00
|
|
|
| CURL_VERSION_KERBEROS5
|
|
|
|
#endif
|
2014-07-21 03:53:45 -04:00
|
|
|
#ifdef HAVE_GSSAPI
|
|
|
|
| CURL_VERSION_GSSAPI
|
|
|
|
#endif
|
2012-06-11 16:58:39 -04:00
|
|
|
#ifdef USE_WINDOWS_SSPI
|
|
|
|
| CURL_VERSION_SSPI
|
|
|
|
#endif
|
2002-09-26 09:03:22 -04:00
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
| CURL_VERSION_LIBZ
|
2003-06-26 07:22:48 -04:00
|
|
|
#endif
|
2009-06-09 22:49:42 -04:00
|
|
|
#ifdef DEBUGBUILD
|
2003-06-26 07:22:48 -04:00
|
|
|
| CURL_VERSION_DEBUG
|
2003-08-11 19:13:09 -04:00
|
|
|
#endif
|
2009-06-09 22:49:42 -04:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
| CURL_VERSION_CURLDEBUG
|
|
|
|
#endif
|
2010-01-23 08:53:33 -05:00
|
|
|
#ifdef CURLRES_ASYNCH
|
2003-08-11 19:13:09 -04:00
|
|
|
| CURL_VERSION_ASYNCHDNS
|
2003-09-19 08:56:22 -04:00
|
|
|
#endif
|
2008-08-25 21:40:19 -04:00
|
|
|
#if (CURL_SIZEOF_CURL_OFF_T > 4) && \
|
|
|
|
( (SIZEOF_OFF_T > 4) || defined(USE_WIN32_LARGE_FILES) )
|
2004-03-01 11:24:04 -05:00
|
|
|
| CURL_VERSION_LARGEFILE
|
2006-04-19 05:03:21 -04:00
|
|
|
#endif
|
2020-07-14 04:30:17 -04:00
|
|
|
#if defined(WIN32) && defined(UNICODE) && defined(_UNICODE)
|
|
|
|
| CURL_VERSION_UNICODE
|
|
|
|
#endif
|
2006-04-19 05:03:21 -04:00
|
|
|
#if defined(CURL_DOES_CONVERSIONS)
|
|
|
|
| CURL_VERSION_CONV
|
2011-01-19 14:35:02 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_TLS_SRP)
|
|
|
|
| CURL_VERSION_TLSAUTH_SRP
|
2013-09-03 17:17:06 -04:00
|
|
|
#endif
|
|
|
|
#if defined(USE_NGHTTP2)
|
|
|
|
| CURL_VERSION_HTTP2
|
2014-11-27 17:59:25 -05:00
|
|
|
#endif
|
2019-07-21 17:48:58 -04:00
|
|
|
#if defined(ENABLE_QUIC)
|
|
|
|
| CURL_VERSION_HTTP3
|
|
|
|
#endif
|
2014-11-27 17:59:25 -05:00
|
|
|
#if defined(USE_UNIX_SOCKETS)
|
|
|
|
| CURL_VERSION_UNIX_SOCKETS
|
2015-12-03 01:02:50 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_LIBPSL)
|
|
|
|
| CURL_VERSION_PSL
|
2017-08-18 02:51:24 -04:00
|
|
|
#endif
|
|
|
|
#if defined(CURL_WITH_MULTI_SSL)
|
|
|
|
| CURL_VERSION_MULTI_SSL
|
2017-11-05 09:28:16 -05:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_BROTLI)
|
|
|
|
| CURL_VERSION_BROTLI
|
2019-03-03 05:17:52 -05:00
|
|
|
#endif
|
2020-05-25 11:49:46 -04:00
|
|
|
#if defined(HAVE_ZSTD)
|
|
|
|
| CURL_VERSION_ZSTD
|
|
|
|
#endif
|
2020-10-25 18:08:54 -04:00
|
|
|
#ifndef CURL_DISABLE_ALTSVC
|
2019-03-03 05:17:52 -05:00
|
|
|
| CURL_VERSION_ALTSVC
|
2002-09-25 11:38:48 -04:00
|
|
|
#endif
|
2020-11-02 17:17:01 -05:00
|
|
|
#if defined(USE_HSTS)
|
|
|
|
| CURL_VERSION_HSTS
|
|
|
|
#endif
|
2002-09-25 11:38:48 -04:00
|
|
|
,
|
|
|
|
NULL, /* ssl_version */
|
2005-04-07 11:27:13 -04:00
|
|
|
0, /* ssl_version_num, this is kept at zero */
|
2002-09-25 11:38:48 -04:00
|
|
|
NULL, /* zlib_version */
|
2004-02-02 11:24:41 -05:00
|
|
|
protocols,
|
|
|
|
NULL, /* c-ares version */
|
2004-02-03 01:39:37 -05:00
|
|
|
0, /* c-ares version numerical */
|
2004-04-26 03:14:08 -04:00
|
|
|
NULL, /* libidn version */
|
2006-08-04 12:10:48 -04:00
|
|
|
0, /* iconv version */
|
2006-11-02 16:56:40 -05:00
|
|
|
NULL, /* ssh lib version */
|
2017-11-05 09:28:16 -05:00
|
|
|
0, /* brotli_ver_num */
|
|
|
|
NULL, /* brotli version */
|
2019-07-18 04:43:16 -04:00
|
|
|
0, /* nghttp2 version number */
|
2019-08-12 04:04:50 -04:00
|
|
|
NULL, /* nghttp2 version string */
|
2020-03-26 08:05:03 -04:00
|
|
|
NULL, /* quic library string */
|
|
|
|
#ifdef CURL_CA_BUNDLE
|
|
|
|
CURL_CA_BUNDLE, /* cainfo */
|
|
|
|
#else
|
|
|
|
NULL,
|
|
|
|
#endif
|
|
|
|
#ifdef CURL_CA_PATH
|
2020-05-25 11:49:46 -04:00
|
|
|
CURL_CA_PATH, /* capath */
|
2020-03-26 08:05:03 -04:00
|
|
|
#else
|
2020-05-25 11:49:46 -04:00
|
|
|
NULL,
|
2020-03-26 08:05:03 -04:00
|
|
|
#endif
|
2020-05-25 11:49:46 -04:00
|
|
|
0, /* zstd_ver_num */
|
|
|
|
NULL /* zstd version */
|
2002-09-25 03:08:41 -04:00
|
|
|
};
|
|
|
|
|
2002-09-30 15:51:05 -04:00
|
|
|
curl_version_info_data *curl_version_info(CURLversion stamp)
|
2002-09-25 03:08:41 -04:00
|
|
|
{
|
2019-05-05 17:42:29 -04:00
|
|
|
#if defined(USE_SSH)
|
2006-11-02 16:56:40 -05:00
|
|
|
static char ssh_buffer[80];
|
|
|
|
#endif
|
2005-04-07 11:27:13 -04:00
|
|
|
#ifdef USE_SSL
|
2019-05-19 16:06:26 -04:00
|
|
|
#ifdef CURL_WITH_MULTI_SSL
|
|
|
|
static char ssl_buffer[200];
|
|
|
|
#else
|
2002-09-25 11:38:48 -04:00
|
|
|
static char ssl_buffer[80];
|
2016-03-16 19:13:42 -04:00
|
|
|
#endif
|
2019-05-19 16:06:26 -04:00
|
|
|
#endif
|
2017-11-05 09:28:16 -05:00
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
static char brotli_buffer[80];
|
|
|
|
#endif
|
2020-05-25 11:49:46 -04:00
|
|
|
#ifdef HAVE_ZSTD
|
|
|
|
static char zstd_buffer[80];
|
|
|
|
#endif
|
|
|
|
|
2016-03-16 19:13:42 -04:00
|
|
|
|
|
|
|
#ifdef USE_SSL
|
2005-04-07 11:27:13 -04:00
|
|
|
Curl_ssl_version(ssl_buffer, sizeof(ssl_buffer));
|
2002-09-25 11:38:48 -04:00
|
|
|
version_info.ssl_version = ssl_buffer;
|
2020-09-30 09:31:01 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2018-05-04 06:10:39 -04:00
|
|
|
if(Curl_ssl->supports & SSLSUPP_HTTPS_PROXY)
|
2017-06-26 12:05:38 -04:00
|
|
|
version_info.features |= CURL_VERSION_HTTPS_PROXY;
|
|
|
|
else
|
|
|
|
version_info.features &= ~CURL_VERSION_HTTPS_PROXY;
|
2002-09-25 11:38:48 -04:00
|
|
|
#endif
|
2020-09-30 09:31:01 -04:00
|
|
|
#endif
|
2002-09-25 11:38:48 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
version_info.libz_version = zlibVersion();
|
|
|
|
/* libz left NULL if non-existing */
|
2004-02-02 11:24:41 -05:00
|
|
|
#endif
|
|
|
|
#ifdef USE_ARES
|
|
|
|
{
|
|
|
|
int aresnum;
|
|
|
|
version_info.ares = ares_version(&aresnum);
|
|
|
|
version_info.ares_num = aresnum;
|
|
|
|
}
|
2004-05-24 03:40:00 -04:00
|
|
|
#endif
|
2016-10-12 03:01:06 -04:00
|
|
|
#ifdef USE_LIBIDN2
|
2004-05-24 03:40:00 -04:00
|
|
|
/* This returns a version string if we use the given version or later,
|
|
|
|
otherwise it returns NULL */
|
2016-10-12 03:01:06 -04:00
|
|
|
version_info.libidn = idn2_check_version(IDN2_VERSION);
|
2004-05-24 03:40:00 -04:00
|
|
|
if(version_info.libidn)
|
|
|
|
version_info.features |= CURL_VERSION_IDN;
|
2010-12-28 13:55:00 -05:00
|
|
|
#elif defined(USE_WIN32_IDN)
|
|
|
|
version_info.features |= CURL_VERSION_IDN;
|
2002-09-25 11:38:48 -04:00
|
|
|
#endif
|
2006-08-04 12:10:48 -04:00
|
|
|
|
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
2006-08-15 13:02:24 -04:00
|
|
|
#ifdef _LIBICONV_VERSION
|
|
|
|
version_info.iconv_ver_num = _LIBICONV_VERSION;
|
|
|
|
#else
|
|
|
|
/* version unknown */
|
|
|
|
version_info.iconv_ver_num = -1;
|
|
|
|
#endif /* _LIBICONV_VERSION */
|
2006-08-04 12:10:48 -04:00
|
|
|
#endif
|
|
|
|
|
2019-08-16 09:32:05 -04:00
|
|
|
#if defined(USE_SSH)
|
|
|
|
Curl_ssh_version(ssh_buffer, sizeof(ssh_buffer));
|
2017-10-23 07:49:23 -04:00
|
|
|
version_info.libssh_version = ssh_buffer;
|
2006-11-02 16:56:40 -05:00
|
|
|
#endif
|
|
|
|
|
2017-11-05 09:28:16 -05:00
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
version_info.brotli_ver_num = BrotliDecoderVersion();
|
2018-05-11 17:40:58 -04:00
|
|
|
brotli_version(brotli_buffer, sizeof(brotli_buffer));
|
2017-11-05 09:28:16 -05:00
|
|
|
version_info.brotli_version = brotli_buffer;
|
|
|
|
#endif
|
|
|
|
|
2020-05-25 11:49:46 -04:00
|
|
|
#ifdef HAVE_ZSTD
|
|
|
|
version_info.zstd_ver_num = (unsigned int)ZSTD_versionNumber();
|
|
|
|
zstd_version(zstd_buffer, sizeof(zstd_buffer));
|
|
|
|
version_info.zstd_version = zstd_buffer;
|
|
|
|
#endif
|
|
|
|
|
2019-07-18 04:43:16 -04:00
|
|
|
#ifdef USE_NGHTTP2
|
|
|
|
{
|
|
|
|
nghttp2_info *h2 = nghttp2_version(0);
|
|
|
|
version_info.nghttp2_ver_num = h2->version_num;
|
|
|
|
version_info.nghttp2_version = h2->version_str;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-08-12 04:04:50 -04:00
|
|
|
#ifdef ENABLE_QUIC
|
|
|
|
{
|
|
|
|
static char quicbuffer[80];
|
|
|
|
Curl_quic_ver(quicbuffer, sizeof(quicbuffer));
|
|
|
|
version_info.quic_version = quicbuffer;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-09-30 15:51:05 -04:00
|
|
|
(void)stamp; /* avoid compiler warnings, we don't use this */
|
2002-09-25 03:08:41 -04:00
|
|
|
return &version_info;
|
|
|
|
}
|