2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-06-24 19:54:11 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-02-16 03:19:00 +08:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08: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-03 07:19:02 +08:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-24 19:54:11 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08: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 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2013-01-07 02:06:49 +08:00
|
|
|
#include "curl_setup.h"
|
2000-08-24 22:26:33 +08:00
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
#include <curl/curl.h>
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "urldata.h"
|
2013-12-18 06:32:47 +08:00
|
|
|
#include "vtls/vtls.h"
|
2013-09-04 05:17:06 +08:00
|
|
|
#include "http2.h"
|
2017-10-23 19:49:23 +08:00
|
|
|
#include "ssh.h"
|
2019-07-22 05:48:58 +08:00
|
|
|
#include "quic.h"
|
2015-03-03 19:36:18 +08:00
|
|
|
#include "curl_printf.h"
|
2004-06-24 19:54:11 +08:00
|
|
|
|
2004-02-03 00:24:41 +08:00
|
|
|
#ifdef USE_ARES
|
2011-05-19 17:48:32 +08:00
|
|
|
# if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \
|
2019-04-06 01:57:29 +08:00
|
|
|
(defined(WIN32) || defined(__SYMBIAN32__))
|
2011-05-19 17:48:32 +08:00
|
|
|
# define CARES_STATICLIB
|
|
|
|
# endif
|
|
|
|
# include <ares.h>
|
2004-02-03 00:24:41 +08:00
|
|
|
#endif
|
|
|
|
|
2016-10-12 15:01:06 +08:00
|
|
|
#ifdef USE_LIBIDN2
|
|
|
|
#include <idn2.h>
|
2004-04-26 15:14:08 +08:00
|
|
|
#endif
|
|
|
|
|
2015-09-29 17:33:01 +08:00
|
|
|
#ifdef USE_LIBPSL
|
|
|
|
#include <libpsl.h>
|
|
|
|
#endif
|
|
|
|
|
2006-08-05 00:10:48 +08:00
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
|
|
|
#include <iconv.h>
|
|
|
|
#endif
|
2002-09-25 23:38:48 +08:00
|
|
|
|
2010-05-16 04:13:17 +08:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
#include <librtmp/rtmp.h>
|
|
|
|
#endif
|
|
|
|
|
2017-11-13 21:20:41 +08:00
|
|
|
#ifdef HAVE_ZLIB_H
|
|
|
|
#include <zlib.h>
|
|
|
|
#ifdef __SYMBIAN32__
|
|
|
|
/* zlib pollutes the namespace with this definition */
|
|
|
|
#undef WIN32
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
#include <brotli/decode.h>
|
|
|
|
#endif
|
|
|
|
|
2016-03-17 07:55:46 +08:00
|
|
|
void Curl_version_init(void);
|
|
|
|
|
2016-03-17 07:13:42 +08:00
|
|
|
/* For thread safety purposes this function is called by global_init so that
|
|
|
|
the static data in both version functions is initialized. */
|
2016-03-17 07:55:46 +08:00
|
|
|
void Curl_version_init(void)
|
2016-03-17 07:13:42 +08:00
|
|
|
{
|
|
|
|
curl_version();
|
|
|
|
curl_version_info(CURLVERSION_NOW);
|
|
|
|
}
|
|
|
|
|
2017-11-05 22:28:16 +08: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 16:01:24 +08:00
|
|
|
return msnprintf(buf, bufsz, "%u.%u.%u", major, minor, patch);
|
2017-11-05 22:28:16 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-09-25 23:38:48 +08:00
|
|
|
char *curl_version(void)
|
|
|
|
{
|
2016-03-17 07:13:42 +08:00
|
|
|
static bool initialized;
|
2019-08-14 21:16:07 +08:00
|
|
|
static char version[250];
|
2012-06-11 14:36:48 +08:00
|
|
|
char *ptr = version;
|
2005-04-07 23:27:13 +08:00
|
|
|
size_t len;
|
2004-06-24 19:54:11 +08:00
|
|
|
size_t left = sizeof(version);
|
2012-06-11 14:36:48 +08:00
|
|
|
|
2016-03-17 07:13:42 +08:00
|
|
|
if(initialized)
|
|
|
|
return version;
|
|
|
|
|
2012-06-11 14:36:48 +08:00
|
|
|
strcpy(ptr, LIBCURL_NAME "/" LIBCURL_VERSION);
|
2007-08-15 22:49:16 +08:00
|
|
|
len = strlen(ptr);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2002-09-25 23:38:48 +08:00
|
|
|
|
2019-09-19 15:32:03 +08:00
|
|
|
len = Curl_ssl_version(ptr + 1, left - 1);
|
|
|
|
|
|
|
|
if(len > 0) {
|
|
|
|
*ptr = ' ';
|
|
|
|
left -= ++len;
|
|
|
|
ptr += len;
|
2007-08-24 17:06:17 +08:00
|
|
|
}
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2002-09-03 05:59:31 +08:00
|
|
|
#ifdef HAVE_LIBZ
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, " zlib/%s", zlibVersion());
|
2004-06-24 19:54:11 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2003-06-26 19:22:48 +08:00
|
|
|
#endif
|
2017-11-05 22:28:16 +08:00
|
|
|
#ifdef HAVE_BROTLI
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, "%s", " brotli/");
|
2017-11-05 22:28:16 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
len = brotli_version(ptr, left);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2004-02-03 00:24:41 +08:00
|
|
|
#ifdef USE_ARES
|
|
|
|
/* this function is only present in c-ares, not in the original ares */
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, " c-ares/%s", ares_version(NULL));
|
2004-06-24 19:54:11 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2004-02-03 00:24:41 +08:00
|
|
|
#endif
|
2016-10-12 15:01:06 +08:00
|
|
|
#ifdef USE_LIBIDN2
|
|
|
|
if(idn2_check_version(IDN2_VERSION)) {
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, " libidn2/%s", idn2_check_version(NULL));
|
2004-06-24 19:54:11 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2004-05-24 15:40:00 +08:00
|
|
|
}
|
2004-04-26 15:14:08 +08:00
|
|
|
#endif
|
2015-09-29 17:33:01 +08:00
|
|
|
#ifdef USE_LIBPSL
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, " libpsl/%s", psl_get_version());
|
2015-09-29 17:33:01 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2010-12-29 02:55:00 +08:00
|
|
|
#ifdef USE_WIN32_IDN
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, " WinIDN");
|
2010-12-29 02:55:00 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2006-08-05 00:10:48 +08:00
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
2006-08-16 01:02:24 +08:00
|
|
|
#ifdef _LIBICONV_VERSION
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, " iconv/%d.%d",
|
|
|
|
_LIBICONV_VERSION >> 8, _LIBICONV_VERSION & 255);
|
2006-08-16 01:02:24 +08:00
|
|
|
#else
|
|
|
|
/* version unknown */
|
2018-11-22 16:01:24 +08:00
|
|
|
len = msnprintf(ptr, left, " iconv");
|
2006-08-16 01:02:24 +08:00
|
|
|
#endif /* _LIBICONV_VERSION */
|
2006-08-05 00:10:48 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2019-08-16 21:32:05 +08:00
|
|
|
#ifdef USE_SSH
|
|
|
|
if(left) {
|
|
|
|
*ptr++=' ';
|
|
|
|
left--;
|
|
|
|
}
|
|
|
|
len = Curl_ssh_version(ptr, left);
|
2017-10-23 19:49:23 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2013-09-04 05:17:06 +08:00
|
|
|
#ifdef USE_NGHTTP2
|
|
|
|
len = Curl_http2_ver(ptr, left);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2019-07-22 05:48:58 +08:00
|
|
|
#ifdef ENABLE_QUIC
|
|
|
|
len = Curl_quic_ver(ptr, left);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2010-05-16 04:13:17 +08:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
{
|
|
|
|
char suff[2];
|
2011-04-20 21:17:42 +08:00
|
|
|
if(RTMP_LIB_VERSION & 0xff) {
|
2010-05-16 04:13:17 +08:00
|
|
|
suff[0] = (RTMP_LIB_VERSION & 0xff) + 'a' - 1;
|
|
|
|
suff[1] = '\0';
|
|
|
|
}
|
2011-04-20 21:17:42 +08:00
|
|
|
else
|
|
|
|
suff[0] = '\0';
|
|
|
|
|
2018-11-22 16:01:24 +08:00
|
|
|
msnprintf(ptr, left, " librtmp/%d.%d%s",
|
|
|
|
RTMP_LIB_VERSION >> 16, (RTMP_LIB_VERSION >> 8) & 0xff,
|
|
|
|
suff);
|
2010-05-16 04:13:17 +08:00
|
|
|
/*
|
|
|
|
If another lib version is added below this one, this code would
|
|
|
|
also have to do:
|
|
|
|
|
2018-11-22 16:01:24 +08:00
|
|
|
len = what msnprintf() returned
|
2012-08-08 20:58:09 +08:00
|
|
|
|
2010-05-16 04:13:17 +08:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2010-04-17 05:49:03 +08:00
|
|
|
*/
|
2010-05-16 04:13:17 +08:00
|
|
|
}
|
2006-11-03 05:56:40 +08:00
|
|
|
#endif
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2019-02-16 03:19:00 +08:00
|
|
|
/* Silent scan-build even if librtmp is not enabled. */
|
|
|
|
(void) left;
|
|
|
|
(void) ptr;
|
|
|
|
|
2016-03-17 07:13:42 +08:00
|
|
|
initialized = true;
|
1999-12-29 22:20:26 +08:00
|
|
|
return version;
|
|
|
|
}
|
2001-09-07 12:01:32 +08:00
|
|
|
|
2010-01-22 21:06:50 +08: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 15:08:41 +08:00
|
|
|
|
2004-12-21 02:23:43 +08:00
|
|
|
static const char * const protocols[] = {
|
2002-09-25 15:08:41 +08:00
|
|
|
#ifndef CURL_DISABLE_DICT
|
2002-10-01 03:51:05 +08:00
|
|
|
"dict",
|
2002-09-25 15:08:41 +08:00
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_FILE
|
2002-10-01 03:51:05 +08:00
|
|
|
"file",
|
2002-09-25 15:08:41 +08:00
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_FTP
|
2010-01-22 21:06:50 +08:00
|
|
|
"ftp",
|
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_FTP)
|
2002-10-01 03:51:05 +08:00
|
|
|
"ftps",
|
2002-09-25 15:08:41 +08:00
|
|
|
#endif
|
2010-08-12 22:55:48 +08:00
|
|
|
#ifndef CURL_DISABLE_GOPHER
|
|
|
|
"gopher",
|
|
|
|
#endif
|
2010-01-22 21:06:50 +08:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
"http",
|
2002-09-25 15:08:41 +08:00
|
|
|
#endif
|
2010-01-22 21:06:50 +08:00
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_HTTP)
|
|
|
|
"https",
|
2006-11-03 05:56:40 +08:00
|
|
|
#endif
|
2009-12-13 05:54:01 +08:00
|
|
|
#ifndef CURL_DISABLE_IMAP
|
|
|
|
"imap",
|
2010-01-22 21:06:50 +08:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_IMAP)
|
2009-12-13 05:54:01 +08:00
|
|
|
"imaps",
|
|
|
|
#endif
|
2010-06-01 23:25:03 +08:00
|
|
|
#ifndef CURL_DISABLE_LDAP
|
2010-01-22 21:06:50 +08:00
|
|
|
"ldap",
|
2011-03-08 09:45:33 +08:00
|
|
|
#if !defined(CURL_DISABLE_LDAPS) && \
|
|
|
|
((defined(USE_OPENLDAP) && defined(USE_SSL)) || \
|
|
|
|
(!defined(USE_OPENLDAP) && defined(HAVE_LDAP_SSL)))
|
2010-01-22 21:06:50 +08:00
|
|
|
"ldaps",
|
2009-12-13 05:54:01 +08:00
|
|
|
#endif
|
2010-05-25 06:44:42 +08:00
|
|
|
#endif
|
2009-12-13 05:54:01 +08:00
|
|
|
#ifndef CURL_DISABLE_POP3
|
|
|
|
"pop3",
|
2010-01-22 21:06:50 +08:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_POP3)
|
2009-12-13 05:54:01 +08:00
|
|
|
"pop3s",
|
|
|
|
#endif
|
2010-05-16 04:13:17 +08:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
"rtmp",
|
|
|
|
#endif
|
2010-01-22 21:06:50 +08:00
|
|
|
#ifndef CURL_DISABLE_RTSP
|
|
|
|
"rtsp",
|
|
|
|
#endif
|
2019-05-06 05:42:29 +08:00
|
|
|
#if defined(USE_SSH)
|
2010-01-22 21:06:50 +08:00
|
|
|
"scp",
|
|
|
|
"sftp",
|
2009-12-13 05:54:01 +08:00
|
|
|
#endif
|
2014-12-08 04:44:57 +08:00
|
|
|
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
|
2014-12-13 06:08:03 +08:00
|
|
|
(CURL_SIZEOF_CURL_OFF_T > 4) && \
|
2014-12-08 04:44:57 +08:00
|
|
|
(!defined(USE_WINDOWS_SSPI) || defined(USE_WIN32_CRYPTO))
|
2014-12-01 00:18:46 +08:00
|
|
|
"smb",
|
|
|
|
# ifdef USE_SSL
|
|
|
|
"smbs",
|
|
|
|
# endif
|
|
|
|
#endif
|
2009-12-13 05:54:01 +08:00
|
|
|
#ifndef CURL_DISABLE_SMTP
|
|
|
|
"smtp",
|
2010-01-22 21:06:50 +08:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_SMTP)
|
2009-12-13 05:54:01 +08:00
|
|
|
"smtps",
|
|
|
|
#endif
|
2010-01-22 21:06:50 +08:00
|
|
|
#ifndef CURL_DISABLE_TELNET
|
|
|
|
"telnet",
|
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_TFTP
|
|
|
|
"tftp",
|
2009-12-13 05:54:01 +08:00
|
|
|
#endif
|
|
|
|
|
2002-10-01 03:51:05 +08:00
|
|
|
NULL
|
2002-09-25 15:08:41 +08:00
|
|
|
};
|
|
|
|
|
2002-09-25 23:38:48 +08:00
|
|
|
static curl_version_info_data version_info = {
|
2004-04-26 15:14:08 +08:00
|
|
|
CURLVERSION_NOW,
|
2002-09-25 15:08:41 +08:00
|
|
|
LIBCURL_VERSION,
|
|
|
|
LIBCURL_VERSION_NUM,
|
2002-09-26 21:03:22 +08:00
|
|
|
OS, /* as found by configure or set by hand at build-time */
|
2002-09-25 23:38:48 +08:00
|
|
|
0 /* features is 0 by default */
|
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
| CURL_VERSION_IPV6
|
|
|
|
#endif
|
2005-04-07 23:27:13 +08:00
|
|
|
#ifdef USE_SSL
|
2002-09-26 21:03:22 +08:00
|
|
|
| CURL_VERSION_SSL
|
2005-03-11 07:15:29 +08:00
|
|
|
#endif
|
2005-04-07 23:27:13 +08:00
|
|
|
#ifdef USE_NTLM
|
2005-03-11 23:10:36 +08:00
|
|
|
| CURL_VERSION_NTLM
|
|
|
|
#endif
|
2014-11-09 20:46:00 +08:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) && \
|
|
|
|
defined(NTLM_WB_ENABLED)
|
2011-08-27 00:57:50 +08:00
|
|
|
| CURL_VERSION_NTLM_WB
|
2011-07-19 05:36:36 +08:00
|
|
|
#endif
|
2014-07-21 15:53:45 +08:00
|
|
|
#ifdef USE_SPNEGO
|
|
|
|
| CURL_VERSION_SPNEGO
|
|
|
|
#endif
|
2014-11-16 17:50:06 +08:00
|
|
|
#ifdef USE_KERBEROS5
|
2014-11-07 18:40:01 +08:00
|
|
|
| CURL_VERSION_KERBEROS5
|
|
|
|
#endif
|
2014-07-21 15:53:45 +08:00
|
|
|
#ifdef HAVE_GSSAPI
|
|
|
|
| CURL_VERSION_GSSAPI
|
|
|
|
#endif
|
2012-06-12 04:58:39 +08:00
|
|
|
#ifdef USE_WINDOWS_SSPI
|
|
|
|
| CURL_VERSION_SSPI
|
|
|
|
#endif
|
2002-09-26 21:03:22 +08:00
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
| CURL_VERSION_LIBZ
|
2003-06-26 19:22:48 +08:00
|
|
|
#endif
|
2009-06-10 10:49:42 +08:00
|
|
|
#ifdef DEBUGBUILD
|
2003-06-26 19:22:48 +08:00
|
|
|
| CURL_VERSION_DEBUG
|
2003-08-12 07:13:09 +08:00
|
|
|
#endif
|
2009-06-10 10:49:42 +08:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
| CURL_VERSION_CURLDEBUG
|
|
|
|
#endif
|
2010-01-23 21:53:33 +08:00
|
|
|
#ifdef CURLRES_ASYNCH
|
2003-08-12 07:13:09 +08:00
|
|
|
| CURL_VERSION_ASYNCHDNS
|
2003-09-19 20:56:22 +08:00
|
|
|
#endif
|
2008-08-26 09:40:19 +08:00
|
|
|
#if (CURL_SIZEOF_CURL_OFF_T > 4) && \
|
|
|
|
( (SIZEOF_OFF_T > 4) || defined(USE_WIN32_LARGE_FILES) )
|
2004-03-02 00:24:04 +08:00
|
|
|
| CURL_VERSION_LARGEFILE
|
2006-04-19 17:03:21 +08:00
|
|
|
#endif
|
|
|
|
#if defined(CURL_DOES_CONVERSIONS)
|
|
|
|
| CURL_VERSION_CONV
|
2011-01-20 03:35:02 +08:00
|
|
|
#endif
|
|
|
|
#if defined(USE_TLS_SRP)
|
|
|
|
| CURL_VERSION_TLSAUTH_SRP
|
2013-09-04 05:17:06 +08:00
|
|
|
#endif
|
|
|
|
#if defined(USE_NGHTTP2)
|
|
|
|
| CURL_VERSION_HTTP2
|
2014-11-28 06:59:25 +08:00
|
|
|
#endif
|
2019-07-22 05:48:58 +08:00
|
|
|
#if defined(ENABLE_QUIC)
|
|
|
|
| CURL_VERSION_HTTP3
|
|
|
|
#endif
|
2014-11-28 06:59:25 +08:00
|
|
|
#if defined(USE_UNIX_SOCKETS)
|
|
|
|
| CURL_VERSION_UNIX_SOCKETS
|
2015-12-03 14:02:50 +08:00
|
|
|
#endif
|
|
|
|
#if defined(USE_LIBPSL)
|
|
|
|
| CURL_VERSION_PSL
|
2017-08-18 14:51:24 +08:00
|
|
|
#endif
|
|
|
|
#if defined(CURL_WITH_MULTI_SSL)
|
|
|
|
| CURL_VERSION_MULTI_SSL
|
2017-11-05 22:28:16 +08:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_BROTLI)
|
|
|
|
| CURL_VERSION_BROTLI
|
2019-03-03 18:17:52 +08:00
|
|
|
#endif
|
|
|
|
#if defined(USE_ALTSVC)
|
|
|
|
| CURL_VERSION_ALTSVC
|
2002-09-25 23:38:48 +08:00
|
|
|
#endif
|
|
|
|
,
|
|
|
|
NULL, /* ssl_version */
|
2005-04-07 23:27:13 +08:00
|
|
|
0, /* ssl_version_num, this is kept at zero */
|
2002-09-25 23:38:48 +08:00
|
|
|
NULL, /* zlib_version */
|
2004-02-03 00:24:41 +08:00
|
|
|
protocols,
|
|
|
|
NULL, /* c-ares version */
|
2004-02-03 14:39:37 +08:00
|
|
|
0, /* c-ares version numerical */
|
2004-04-26 15:14:08 +08:00
|
|
|
NULL, /* libidn version */
|
2006-08-05 00:10:48 +08:00
|
|
|
0, /* iconv version */
|
2006-11-03 05:56:40 +08:00
|
|
|
NULL, /* ssh lib version */
|
2017-11-05 22:28:16 +08:00
|
|
|
0, /* brotli_ver_num */
|
|
|
|
NULL, /* brotli version */
|
2019-07-18 16:43:16 +08:00
|
|
|
0, /* nghttp2 version number */
|
2019-08-12 16:04:50 +08:00
|
|
|
NULL, /* nghttp2 version string */
|
|
|
|
NULL /* quic library string */
|
2002-09-25 15:08:41 +08:00
|
|
|
};
|
|
|
|
|
2002-10-01 03:51:05 +08:00
|
|
|
curl_version_info_data *curl_version_info(CURLversion stamp)
|
2002-09-25 15:08:41 +08:00
|
|
|
{
|
2016-03-17 07:13:42 +08:00
|
|
|
static bool initialized;
|
2019-05-06 05:42:29 +08:00
|
|
|
#if defined(USE_SSH)
|
2006-11-03 05:56:40 +08:00
|
|
|
static char ssh_buffer[80];
|
|
|
|
#endif
|
2005-04-07 23:27:13 +08:00
|
|
|
#ifdef USE_SSL
|
2019-05-20 04:06:26 +08:00
|
|
|
#ifdef CURL_WITH_MULTI_SSL
|
|
|
|
static char ssl_buffer[200];
|
|
|
|
#else
|
2002-09-25 23:38:48 +08:00
|
|
|
static char ssl_buffer[80];
|
2016-03-17 07:13:42 +08:00
|
|
|
#endif
|
2019-05-20 04:06:26 +08:00
|
|
|
#endif
|
2017-11-05 22:28:16 +08:00
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
static char brotli_buffer[80];
|
|
|
|
#endif
|
2016-03-17 07:13:42 +08:00
|
|
|
|
|
|
|
if(initialized)
|
|
|
|
return &version_info;
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
2005-04-07 23:27:13 +08:00
|
|
|
Curl_ssl_version(ssl_buffer, sizeof(ssl_buffer));
|
2002-09-25 23:38:48 +08:00
|
|
|
version_info.ssl_version = ssl_buffer;
|
2018-05-04 18:10:39 +08:00
|
|
|
if(Curl_ssl->supports & SSLSUPP_HTTPS_PROXY)
|
2017-06-27 00:05:38 +08:00
|
|
|
version_info.features |= CURL_VERSION_HTTPS_PROXY;
|
|
|
|
else
|
|
|
|
version_info.features &= ~CURL_VERSION_HTTPS_PROXY;
|
2002-09-25 23:38:48 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
version_info.libz_version = zlibVersion();
|
|
|
|
/* libz left NULL if non-existing */
|
2004-02-03 00:24:41 +08:00
|
|
|
#endif
|
|
|
|
#ifdef USE_ARES
|
|
|
|
{
|
|
|
|
int aresnum;
|
|
|
|
version_info.ares = ares_version(&aresnum);
|
|
|
|
version_info.ares_num = aresnum;
|
|
|
|
}
|
2004-05-24 15:40:00 +08:00
|
|
|
#endif
|
2016-10-12 15:01:06 +08:00
|
|
|
#ifdef USE_LIBIDN2
|
2004-05-24 15:40:00 +08:00
|
|
|
/* This returns a version string if we use the given version or later,
|
|
|
|
otherwise it returns NULL */
|
2016-10-12 15:01:06 +08:00
|
|
|
version_info.libidn = idn2_check_version(IDN2_VERSION);
|
2004-05-24 15:40:00 +08:00
|
|
|
if(version_info.libidn)
|
|
|
|
version_info.features |= CURL_VERSION_IDN;
|
2010-12-29 02:55:00 +08:00
|
|
|
#elif defined(USE_WIN32_IDN)
|
|
|
|
version_info.features |= CURL_VERSION_IDN;
|
2002-09-25 23:38:48 +08:00
|
|
|
#endif
|
2006-08-05 00:10:48 +08:00
|
|
|
|
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
2006-08-16 01:02:24 +08: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-05 00:10:48 +08:00
|
|
|
#endif
|
|
|
|
|
2019-08-16 21:32:05 +08:00
|
|
|
#if defined(USE_SSH)
|
|
|
|
Curl_ssh_version(ssh_buffer, sizeof(ssh_buffer));
|
2017-10-23 19:49:23 +08:00
|
|
|
version_info.libssh_version = ssh_buffer;
|
2006-11-03 05:56:40 +08:00
|
|
|
#endif
|
|
|
|
|
2017-11-05 22:28:16 +08:00
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
version_info.brotli_ver_num = BrotliDecoderVersion();
|
2018-05-12 05:40:58 +08:00
|
|
|
brotli_version(brotli_buffer, sizeof(brotli_buffer));
|
2017-11-05 22:28:16 +08:00
|
|
|
version_info.brotli_version = brotli_buffer;
|
|
|
|
#endif
|
|
|
|
|
2019-07-18 16:43:16 +08: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 16:04:50 +08:00
|
|
|
#ifdef ENABLE_QUIC
|
|
|
|
{
|
|
|
|
static char quicbuffer[80];
|
|
|
|
Curl_quic_ver(quicbuffer, sizeof(quicbuffer));
|
|
|
|
version_info.quic_version = quicbuffer;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-10-01 03:51:05 +08:00
|
|
|
(void)stamp; /* avoid compiler warnings, we don't use this */
|
2002-09-25 23:38:48 +08:00
|
|
|
|
2016-03-17 07:13:42 +08:00
|
|
|
initialized = true;
|
2002-09-25 15:08:41 +08:00
|
|
|
return &version_info;
|
|
|
|
}
|