Skip to content

Commit

Permalink
Update 9 packages
Browse files Browse the repository at this point in the history
curl (8.4.0-1 -> 8.5.0-1)
info (7.1-1 -> 7.1-2)
libcurl (8.4.0-1 -> 8.5.0-1)
mingw-w64-i686-curl-openssl-alternate (8.4.0-1 -> 8.5.0-1)
mingw-w64-i686-curl-winssl (8.4.0-1 -> 8.5.0-1)
mingw-w64-x86_64-curl-openssl-alternate (8.4.0-1 -> 8.5.0-1)
mingw-w64-x86_64-curl-winssl (8.4.0-1 -> 8.5.0-1)
perl-http-cookiejar (new: 0.014-1)
perl-libwww (6.67-1 -> 6.72-1)

Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
  • Loading branch information
Git for Windows Build Agent committed Dec 7, 2023
1 parent 6b2aeda commit 69207bd
Show file tree
Hide file tree
Showing 1,597 changed files with 1,063 additions and 200 deletions.
12 changes: 6 additions & 6 deletions mingw32/bin/curl-config
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ while test $# -gt 0; do
;;

--version)
echo libcurl 8.4.0
echo libcurl 8.5.0
exit 0
;;

Expand All @@ -110,11 +110,11 @@ while test $# -gt 0; do
# dash as that's used for things like version 1.2.3-CVS
cpatch=`echo $checkfor | cut -d. -f3 | cut -d- -f1`

vmajor=`echo 8.4.0 | cut -d. -f1`
vminor=`echo 8.4.0 | cut -d. -f2`
vmajor=`echo 8.5.0 | cut -d. -f1`
vminor=`echo 8.5.0 | cut -d. -f2`
# when extracting the patch part we strip off everything after a
# dash as that's used for things like version 1.2.3-CVS
vpatch=`echo 8.4.0 | cut -d. -f3 | cut -d- -f1`
vpatch=`echo 8.5.0 | cut -d. -f3 | cut -d- -f1`

if test "$vmajor" -gt "$cmajor"; then
exit 0;
Expand All @@ -130,12 +130,12 @@ while test $# -gt 0; do
fi
fi

echo "requested version $checkfor is newer than existing 8.4.0"
echo "requested version $checkfor is newer than existing 8.5.0"
exit 1
;;

--vernum)
echo 080400
echo 080500
exit 0
;;

Expand Down
Binary file modified mingw32/bin/curl.exe
Binary file not shown.
Binary file modified mingw32/bin/libcurl-4.dll
Binary file not shown.
Binary file modified mingw32/bin/libcurl-openssl-4.dll
Binary file not shown.
26 changes: 9 additions & 17 deletions mingw32/include/curl/curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,28 +53,19 @@
#include "curlver.h" /* libcurl version defines */
#include "system.h" /* determine things run-time */

/*
* Define CURL_WIN32 when build target is Win32 API
*/

#if (defined(_WIN32) || defined(__WIN32__) || defined(WIN32)) && \
!defined(__SYMBIAN32__)
#define CURL_WIN32
#endif

#include <stdio.h>
#include <limits.h>

#if (defined(__FreeBSD__) && (__FreeBSD__ >= 2)) || defined(__MidnightBSD__)
#if defined(__FreeBSD__) || defined(__MidnightBSD__)
/* Needed for __FreeBSD_version or __MidnightBSD_version symbol definition */
#include <osreldate.h>
#include <sys/param.h>
#endif

/* The include stuff here below is mainly for time_t! */
#include <sys/types.h>
#include <time.h>

#if defined(CURL_WIN32) && !defined(_WIN32_WCE) && !defined(__CYGWIN__)
#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__CYGWIN__)
#if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H) || \
defined(__LWIP_OPT_H__) || defined(LWIP_HDR_OPT_H))
/* The check above prevents the winsock2 inclusion if winsock.h already was
Expand All @@ -88,7 +79,7 @@
libc5-based Linux systems. Only include it on systems that are known to
require it! */
#if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \
defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY) || \
defined(__minix) || defined(__INTEGRITY) || \
defined(ANDROID) || defined(__ANDROID__) || defined(__OpenBSD__) || \
defined(__CYGWIN__) || defined(AMIGA) || defined(__NuttX__) || \
(defined(__FreeBSD_version) && (__FreeBSD_version < 800000)) || \
Expand All @@ -97,11 +88,11 @@
#include <sys/select.h>
#endif

#if !defined(CURL_WIN32) && !defined(_WIN32_WCE)
#if !defined(_WIN32) && !defined(_WIN32_WCE)
#include <sys/socket.h>
#endif

#if !defined(CURL_WIN32)
#if !defined(_WIN32)
#include <sys/time.h>
#endif

Expand All @@ -128,7 +119,7 @@ typedef void CURLSH;

#ifdef CURL_STATICLIB
# define CURL_EXTERN
#elif defined(CURL_WIN32) || defined(__SYMBIAN32__) || \
#elif defined(_WIN32) || \
(__has_declspec_attribute(dllexport) && \
__has_declspec_attribute(dllimport))
# if defined(BUILDING_LIBCURL)
Expand All @@ -144,7 +135,7 @@ typedef void CURLSH;

#ifndef curl_socket_typedef
/* socket typedef */
#if defined(CURL_WIN32) && !defined(__LWIP_OPT_H__) && !defined(LWIP_HDR_OPT_H)
#if defined(_WIN32) && !defined(__LWIP_OPT_H__) && !defined(LWIP_HDR_OPT_H)
typedef SOCKET curl_socket_t;
#define CURL_SOCKET_BAD INVALID_SOCKET
#else
Expand Down Expand Up @@ -3220,6 +3211,7 @@ CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
#include "options.h"
#include "header.h"
#include "websockets.h"
#include "mprintf.h"

/* the typechecker doesn't work in C++ (yet) */
#if defined(__GNUC__) && defined(__GNUC_MINOR__) && \
Expand Down
8 changes: 4 additions & 4 deletions mingw32/include/curl/curlver.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@

/* This is the version number of the libcurl package from which this header
file origins: */
#define LIBCURL_VERSION "8.4.0"
#define LIBCURL_VERSION "8.5.0"

/* The numeric version number is also available "in parts" by using these
defines: */
#define LIBCURL_VERSION_MAJOR 8
#define LIBCURL_VERSION_MINOR 4
#define LIBCURL_VERSION_MINOR 5
#define LIBCURL_VERSION_PATCH 0

/* This is the numeric version of the libcurl version number, meant for easier
Expand All @@ -59,7 +59,7 @@
CURL_VERSION_BITS() macro since curl's own configure script greps for it
and needs it to contain the full number.
*/
#define LIBCURL_VERSION_NUM 0x080400
#define LIBCURL_VERSION_NUM 0x080500

/*
* This is the date and time when the full source package was created. The
Expand All @@ -70,7 +70,7 @@
*
* "2007-11-23"
*/
#define LIBCURL_TIMESTAMP "2023-10-11"
#define LIBCURL_TIMESTAMP "2023-12-06"

#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
#define CURL_AT_LEAST_VERSION(x,y,z) \
Expand Down
37 changes: 11 additions & 26 deletions mingw32/include/curl/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,29 +141,6 @@
# define CURL_TYPEOF_CURL_SOCKLEN_T int
# endif

#elif defined(__SYMBIAN32__)
# if defined(__EABI__) /* Treat all ARM compilers equally */
# define CURL_TYPEOF_CURL_OFF_T long long
# define CURL_FORMAT_CURL_OFF_T "lld"
# define CURL_FORMAT_CURL_OFF_TU "llu"
# define CURL_SUFFIX_CURL_OFF_T LL
# define CURL_SUFFIX_CURL_OFF_TU ULL
# elif defined(__CW32__)
# pragma longlong on
# define CURL_TYPEOF_CURL_OFF_T long long
# define CURL_FORMAT_CURL_OFF_T "lld"
# define CURL_FORMAT_CURL_OFF_TU "llu"
# define CURL_SUFFIX_CURL_OFF_T LL
# define CURL_SUFFIX_CURL_OFF_TU ULL
# elif defined(__VC32__)
# define CURL_TYPEOF_CURL_OFF_T __int64
# define CURL_FORMAT_CURL_OFF_T "lld"
# define CURL_FORMAT_CURL_OFF_TU "llu"
# define CURL_SUFFIX_CURL_OFF_T LL
# define CURL_SUFFIX_CURL_OFF_TU ULL
# endif
# define CURL_TYPEOF_CURL_SOCKLEN_T unsigned int

#elif defined(macintosh)
# include <ConditionalMacros.h>
# if TYPE_LONGLONG
Expand Down Expand Up @@ -201,9 +178,10 @@
# define CURL_TYPEOF_CURL_SOCKLEN_T int

#elif defined(__MINGW32__)
# include <inttypes.h>
# define CURL_TYPEOF_CURL_OFF_T long long
# define CURL_FORMAT_CURL_OFF_T "I64d"
# define CURL_FORMAT_CURL_OFF_TU "I64u"
# define CURL_FORMAT_CURL_OFF_T PRId64
# define CURL_FORMAT_CURL_OFF_TU PRIu64
# define CURL_SUFFIX_CURL_OFF_T LL
# define CURL_SUFFIX_CURL_OFF_TU ULL
# define CURL_TYPEOF_CURL_SOCKLEN_T socklen_t
Expand Down Expand Up @@ -370,7 +348,14 @@
/* ===================================== */

#elif defined(_MSC_VER)
# if (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64)
# if (_MSC_VER >= 1800)
# include <inttypes.h>
# define CURL_TYPEOF_CURL_OFF_T __int64
# define CURL_FORMAT_CURL_OFF_T PRId64
# define CURL_FORMAT_CURL_OFF_TU PRIu64
# define CURL_SUFFIX_CURL_OFF_T i64
# define CURL_SUFFIX_CURL_OFF_TU ui64
# elif (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64)
# define CURL_TYPEOF_CURL_OFF_T __int64
# define CURL_FORMAT_CURL_OFF_T "I64d"
# define CURL_FORMAT_CURL_OFF_TU "I64u"
Expand Down
2 changes: 1 addition & 1 deletion mingw32/lib/pkgconfig/libcurl.pc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ supported_features="AsynchDNS HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile NTLM
Name: libcurl
URL: https://curl.se/
Description: Library to transfer files with ftp, http, etc.
Version: 8.4.0
Version: 8.5.0
Libs: -L${libdir} -lcurl
Libs.private: -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
Cflags: -I${includedir}
Binary file modified mingw32/share/man/man1/curl-config.1.gz
Binary file not shown.
Binary file modified mingw32/share/man/man1/curl.1.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_ACTIVESOCKET.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_APPCONNECT_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_APPCONNECT_TIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CAINFO.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CAPATH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CERTINFO.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONDITION_UNMET.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONNECT_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONNECT_TIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONN_ID.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_CONTENT_TYPE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_COOKIELIST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_EFFECTIVE_METHOD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_EFFECTIVE_URL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_FILETIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_FILETIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_FTP_ENTRY_PATH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_HEADER_SIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_HTTPAUTH_AVAIL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_HTTP_CONNECTCODE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_HTTP_VERSION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_LASTSOCKET.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_LOCAL_IP.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_LOCAL_PORT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_NAMELOOKUP_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_NAMELOOKUP_TIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_NUM_CONNECTS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_OS_ERRNO.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PRETRANSFER_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PRETRANSFER_TIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PRIMARY_IP.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PRIMARY_PORT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PRIVATE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PROTOCOL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PROXYAUTH_AVAIL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PROXY_ERROR.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_PROXY_SSL_VERIFYRESULT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_REDIRECT_COUNT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_REDIRECT_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_REDIRECT_TIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_REDIRECT_URL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_REFERER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_REQUEST_SIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_RESPONSE_CODE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_RETRY_AFTER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_RTSP_CLIENT_CSEQ.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_RTSP_CSEQ_RECV.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_RTSP_SERVER_CSEQ.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_RTSP_SESSION_ID.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SCHEME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SIZE_DOWNLOAD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SIZE_DOWNLOAD_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SIZE_UPLOAD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SIZE_UPLOAD_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SPEED_DOWNLOAD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SPEED_DOWNLOAD_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SPEED_UPLOAD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SPEED_UPLOAD_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SSL_ENGINES.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_SSL_VERIFYRESULT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_STARTTRANSFER_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_STARTTRANSFER_TIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_TLS_SESSION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_TLS_SSL_PTR.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_TOTAL_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_TOTAL_TIME_T.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLINFO_XFER_ID.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_MAXCONNECTS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_MAX_CONCURRENT_STREAMS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_MAX_HOST_CONNECTIONS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_MAX_PIPELINE_LENGTH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_PIPELINING.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_PIPELINING_SERVER_BL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_PIPELINING_SITE_BL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_PUSHDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_PUSHFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_SOCKETDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_SOCKETFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_TIMERDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLMOPT_TIMERFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ABSTRACT_UNIX_SOCKET.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ACCEPTTIMEOUT_MS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ACCEPT_ENCODING.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ADDRESS_SCOPE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ALTSVC.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ALTSVC_CTRL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_APPEND.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_AUTOREFERER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_AWS_SIGV4.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_BUFFERSIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CAINFO.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CAINFO_BLOB.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CAPATH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CA_CACHE_TIMEOUT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CERTINFO.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CHUNK_BGN_FUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CHUNK_DATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CHUNK_END_FUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CLOSESOCKETDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CLOSESOCKETFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CONNECTTIMEOUT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CONNECTTIMEOUT_MS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CONNECT_ONLY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CONNECT_TO.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CONV_FROM_UTF8_FUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CONV_TO_NETWORK_FUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_COOKIE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_COOKIEFILE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_COOKIEJAR.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_COOKIELIST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_COOKIESESSION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_COPYPOSTFIELDS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CRLF.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CRLFILE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CURLU.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_CUSTOMREQUEST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DEBUGDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DEBUGFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DEFAULT_PROTOCOL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DIRLISTONLY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DISALLOW_USERNAME_IN_URL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DNS_CACHE_TIMEOUT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DNS_INTERFACE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DNS_LOCAL_IP4.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DNS_LOCAL_IP6.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DNS_SERVERS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DNS_SHUFFLE_ADDRESSES.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DNS_USE_GLOBAL_CACHE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DOH_SSL_VERIFYHOST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DOH_SSL_VERIFYPEER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DOH_SSL_VERIFYSTATUS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_DOH_URL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_EGDSOCKET.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ERRORBUFFER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_EXPECT_100_TIMEOUT_MS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FAILONERROR.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FILETIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FNMATCH_DATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FNMATCH_FUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FOLLOWLOCATION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FORBID_REUSE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FRESH_CONNECT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTPPORT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTPSSLAUTH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_ACCOUNT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_ALTERNATIVE_TO_USER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_CREATE_MISSING_DIRS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_FILEMETHOD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_SKIP_PASV_IP.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_SSL_CCC.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_USE_EPRT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_USE_EPSV.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_FTP_USE_PRET.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_GSSAPI_DELEGATION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HAPROXYPROTOCOL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HAPROXY_CLIENT_IP.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HEADER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HEADERDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HEADERFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HEADEROPT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HSTS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HSTSREADDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HSTSREADFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HSTSWRITEDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HSTSWRITEFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HSTS_CTRL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTP09_ALLOWED.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTP200ALIASES.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTPAUTH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTPGET.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTPHEADER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTPPOST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTPPROXYTUNNEL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTP_CONTENT_DECODING.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTP_TRANSFER_DECODING.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_HTTP_VERSION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_IGNORE_CONTENT_LENGTH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_INFILESIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_INFILESIZE_LARGE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_INTERFACE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_INTERLEAVEDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_INTERLEAVEFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_IOCTLDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_IOCTLFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_IPRESOLVE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ISSUERCERT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_ISSUERCERT_BLOB.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_KEEP_SENDING_ON_ERROR.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_KEYPASSWD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_KRBLEVEL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_LOCALPORT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_LOCALPORTRANGE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_LOGIN_OPTIONS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_LOW_SPEED_LIMIT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_LOW_SPEED_TIME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAIL_AUTH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAIL_FROM.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAIL_RCPT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAIL_RCPT_ALLOWFAILS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAXAGE_CONN.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAXCONNECTS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAXFILESIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAXFILESIZE_LARGE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAXLIFETIME_CONN.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAXREDIRS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MIMEPOST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_MIME_OPTIONS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NETRC.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NETRC_FILE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NEW_DIRECTORY_PERMS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NEW_FILE_PERMS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NOBODY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NOPROGRESS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NOPROXY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_NOSIGNAL.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_OPENSOCKETDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_OPENSOCKETFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PASSWORD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PATH_AS_IS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PINNEDPUBLICKEY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PIPEWAIT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PORT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_POST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_POSTFIELDS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_POSTFIELDSIZE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_POSTFIELDSIZE_LARGE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_POSTQUOTE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_POSTREDIR.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PREQUOTE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PREREQDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PREREQFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PRE_PROXY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PRIVATE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROGRESSDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROGRESSFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROTOCOLS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROTOCOLS_STR.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXYAUTH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXYHEADER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXYPASSWORD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXYPORT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXYTYPE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXYUSERNAME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXYUSERPWD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_CAINFO.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_CAINFO_BLOB.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_CAPATH.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_CRLFILE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_ISSUERCERT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_ISSUERCERT_BLOB.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_KEYPASSWD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_PINNEDPUBLICKEY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SERVICE_NAME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSLCERT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSLCERTTYPE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSLCERT_BLOB.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSLKEY.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSLKEYTYPE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSLKEY_BLOB.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSLVERSION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSL_CIPHER_LIST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSL_OPTIONS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSL_VERIFYHOST.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_SSL_VERIFYPEER.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_TLS13_CIPHERS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_TLSAUTH_PASSWORD.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_TLSAUTH_TYPE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_TLSAUTH_USERNAME.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PROXY_TRANSFER_MODE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_PUT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_QUICK_EXIT.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_QUOTE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_RANDOM_FILE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_RANGE.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_READDATA.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_READFUNCTION.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_REDIR_PROTOCOLS.3.gz
Binary file not shown.
Binary file modified mingw32/share/man/man3/CURLOPT_REDIR_PROTOCOLS_STR.3.gz
Binary file not shown.
Loading

0 comments on commit 69207bd

Please sign in to comment.