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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2018-05-04 06:10:39 -04:00
|
|
|
* Copyright (C) 1998 - 2018, 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"
|
2017-10-23 07:49:23 -04:00
|
|
|
#include "ssh.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
|
2011-05-19 05:48:32 -04:00
|
|
|
# if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \
|
|
|
|
(defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__))
|
|
|
|
# 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
|
|
|
|
|
2006-11-02 16:56:40 -05:00
|
|
|
#ifdef USE_LIBSSH2
|
|
|
|
#include <libssh2.h>
|
|
|
|
#endif
|
|
|
|
|
2009-03-13 05:58:15 -04:00
|
|
|
#ifdef HAVE_LIBSSH2_VERSION
|
|
|
|
/* get it run-time if possible */
|
|
|
|
#define CURL_LIBSSH2_VERSION libssh2_version(0)
|
|
|
|
#else
|
|
|
|
/* use build-time if run-time not possible */
|
|
|
|
#define CURL_LIBSSH2_VERSION LIBSSH2_VERSION
|
|
|
|
#endif
|
2006-11-02 16:56:40 -05:00
|
|
|
|
2017-11-13 08:20:41 -05: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-16 19:55:46 -04:00
|
|
|
void Curl_version_init(void);
|
|
|
|
|
2016-03-16 19:13:42 -04: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-16 19:55:46 -04:00
|
|
|
void Curl_version_init(void)
|
2016-03-16 19:13:42 -04:00
|
|
|
{
|
|
|
|
curl_version();
|
|
|
|
curl_version_info(CURLVERSION_NOW);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
2002-09-25 11:38:48 -04:00
|
|
|
char *curl_version(void)
|
|
|
|
{
|
2016-03-16 19:13:42 -04:00
|
|
|
static bool initialized;
|
2002-09-25 11:38:48 -04:00
|
|
|
static char version[200];
|
2012-06-11 02:36:48 -04:00
|
|
|
char *ptr = version;
|
2005-04-07 11:27:13 -04:00
|
|
|
size_t len;
|
2004-06-24 07:54:11 -04:00
|
|
|
size_t left = sizeof(version);
|
2012-06-11 02:36:48 -04:00
|
|
|
|
2016-03-16 19:13:42 -04:00
|
|
|
if(initialized)
|
|
|
|
return version;
|
|
|
|
|
2012-06-11 02:36:48 -04:00
|
|
|
strcpy(ptr, LIBCURL_NAME "/" LIBCURL_VERSION);
|
2007-08-15 10:49:16 -04:00
|
|
|
len = strlen(ptr);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2002-09-25 11:38:48 -04:00
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(left > 1) {
|
2007-08-24 05:06:17 -04:00
|
|
|
len = Curl_ssl_version(ptr + 1, left - 1);
|
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(len > 0) {
|
2007-08-24 05:06:17 -04:00
|
|
|
*ptr = ' ';
|
|
|
|
left -= ++len;
|
|
|
|
ptr += len;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-09-02 17:59:31 -04:00
|
|
|
#ifdef HAVE_LIBZ
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " zlib/%s", zlibVersion());
|
2004-06-24 07:54:11 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2003-06-26 07:22:48 -04:00
|
|
|
#endif
|
2017-11-05 09:28:16 -05:00
|
|
|
#ifdef HAVE_BROTLI
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, "%s", " brotli/");
|
2017-11-05 09:28:16 -05:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
len = brotli_version(ptr, left);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2004-02-02 11:24:41 -05:00
|
|
|
#ifdef USE_ARES
|
|
|
|
/* this function is only present in c-ares, not in the original ares */
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " c-ares/%s", ares_version(NULL));
|
2004-06-24 07:54:11 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2004-02-02 11:24:41 -05:00
|
|
|
#endif
|
2016-10-12 03:01:06 -04:00
|
|
|
#ifdef USE_LIBIDN2
|
|
|
|
if(idn2_check_version(IDN2_VERSION)) {
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " libidn2/%s", idn2_check_version(NULL));
|
2004-06-24 07:54:11 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2004-05-24 03:40:00 -04:00
|
|
|
}
|
2004-04-26 03:14:08 -04:00
|
|
|
#endif
|
2015-09-29 05:33:01 -04:00
|
|
|
#ifdef USE_LIBPSL
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " libpsl/%s", psl_get_version());
|
2015-09-29 05:33:01 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2010-12-28 13:55:00 -05:00
|
|
|
#ifdef USE_WIN32_IDN
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " WinIDN");
|
2010-12-28 13:55:00 -05:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#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
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " iconv/%d.%d",
|
|
|
|
_LIBICONV_VERSION >> 8, _LIBICONV_VERSION & 255);
|
2006-08-15 13:02:24 -04:00
|
|
|
#else
|
|
|
|
/* version unknown */
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " iconv");
|
2006-08-15 13:02:24 -04:00
|
|
|
#endif /* _LIBICONV_VERSION */
|
2006-08-04 12:10:48 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2006-11-02 16:56:40 -05:00
|
|
|
#ifdef USE_LIBSSH2
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " libssh2/%s", CURL_LIBSSH2_VERSION);
|
2006-11-02 16:56:40 -05:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2010-05-15 16:13:17 -04:00
|
|
|
#endif
|
2017-10-23 07:49:23 -04:00
|
|
|
#ifdef USE_LIBSSH
|
2018-11-22 03:01:24 -05:00
|
|
|
len = msnprintf(ptr, left, " libssh/%s", CURL_LIBSSH_VERSION);
|
2017-10-23 07:49:23 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2013-09-03 17:17:06 -04:00
|
|
|
#ifdef USE_NGHTTP2
|
|
|
|
len = Curl_http2_ver(ptr, left);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#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';
|
|
|
|
|
2018-11-22 03:01:24 -05:00
|
|
|
msnprintf(ptr, left, " librtmp/%d.%d%s",
|
|
|
|
RTMP_LIB_VERSION >> 16, (RTMP_LIB_VERSION >> 8) & 0xff,
|
|
|
|
suff);
|
2010-05-15 16:13:17 -04:00
|
|
|
/*
|
|
|
|
If another lib version is added below this one, this code would
|
|
|
|
also have to do:
|
|
|
|
|
2018-11-22 03:01:24 -05:00
|
|
|
len = what msnprintf() returned
|
2012-08-08 08:58:09 -04:00
|
|
|
|
2010-05-15 16:13:17 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2010-04-16 17:49:03 -04:00
|
|
|
*/
|
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
|
|
|
|
2016-03-16 19:13:42 -04:00
|
|
|
initialized = true;
|
1999-12-29 09:20:26 -05:00
|
|
|
return version;
|
|
|
|
}
|
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
|
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
|
2017-10-23 07:49:23 -04:00
|
|
|
#if defined(USE_LIBSSH) || defined(USE_LIBSSH2)
|
2010-01-22 08:06:50 -05:00
|
|
|
"scp",
|
|
|
|
"sftp",
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
2014-12-07 15:44:57 -05:00
|
|
|
#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \
|
2014-12-12 17:08:03 -05:00
|
|
|
(CURL_SIZEOF_CURL_OFF_T > 4) && \
|
2014-12-07 15:44:57 -05:00
|
|
|
(!defined(USE_WINDOWS_SSPI) || defined(USE_WIN32_CRYPTO))
|
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
|
|
|
|
#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
|
|
|
|
#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
|
2002-09-25 11:38:48 -04:00
|
|
|
#endif
|
|
|
|
,
|
|
|
|
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 */
|
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
|
|
|
{
|
2016-03-16 19:13:42 -04:00
|
|
|
static bool initialized;
|
2017-10-23 07:49:23 -04:00
|
|
|
#if defined(USE_LIBSSH) || defined(USE_LIBSSH2)
|
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
|
2002-09-25 11:38:48 -04:00
|
|
|
static char ssl_buffer[80];
|
2016-03-16 19:13:42 -04:00
|
|
|
#endif
|
2017-11-05 09:28:16 -05:00
|
|
|
#ifdef HAVE_BROTLI
|
|
|
|
static char brotli_buffer[80];
|
|
|
|
#endif
|
2016-03-16 19:13:42 -04:00
|
|
|
|
|
|
|
if(initialized)
|
|
|
|
return &version_info;
|
|
|
|
|
|
|
|
#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;
|
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
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
2017-10-23 07:49:23 -04:00
|
|
|
#if defined(USE_LIBSSH2)
|
2018-11-22 03:01:24 -05:00
|
|
|
msnprintf(ssh_buffer, sizeof(ssh_buffer), "libssh2/%s", LIBSSH2_VERSION);
|
2006-11-02 16:56:40 -05:00
|
|
|
version_info.libssh_version = ssh_buffer;
|
2017-10-23 07:49:23 -04:00
|
|
|
#elif defined(USE_LIBSSH)
|
2018-11-22 03:01:24 -05:00
|
|
|
msnprintf(ssh_buffer, sizeof(ssh_buffer), "libssh/%s", CURL_LIBSSH_VERSION);
|
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
|
|
|
|
|
2002-09-30 15:51:05 -04:00
|
|
|
(void)stamp; /* avoid compiler warnings, we don't use this */
|
2002-09-25 11:38:48 -04:00
|
|
|
|
2016-03-16 19:13:42 -04:00
|
|
|
initialized = true;
|
2002-09-25 03:08:41 -04:00
|
|
|
return &version_info;
|
|
|
|
}
|