Skip to content

Commit

Permalink
Update 4 packages
Browse files Browse the repository at this point in the history
curl (8.10.1-1 -> 8.11.0-1)
libcurl (8.10.1-1 -> 8.11.0-1)
mingw-w64-i686-curl-openssl-alternate (8.10.1-1 -> 8.11.0-1)
mingw-w64-i686-curl-winssl (8.10.1-1 -> 8.11.0-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Nov 7, 2024
1 parent 0ebdf28 commit 011dce7
Show file tree
Hide file tree
Showing 1,038 changed files with 75 additions and 77 deletions.
Binary file modified etc/rebase.db.i386
Binary file not shown.
46 changes: 23 additions & 23 deletions mingw32/bin/curl-config
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@

# shellcheck disable=SC2006

prefix="/mingw32"
# Used in ${exec_prefix}/lib
prefix='/mingw32'
# Used in 'libdir'
# shellcheck disable=SC2034
exec_prefix=${prefix}
exec_prefix="${prefix}"
# shellcheck disable=SC2034
includedir=${prefix}/include
cppflag_curl_staticlib=
includedir="${prefix}/include"
cppflag_curl_staticlib=''

usage()
{
Expand Down Expand Up @@ -83,36 +83,36 @@ while test "$#" -gt 0; do
;;

--feature|--features)
for feature in alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM PSL SPNEGO SSL SSPI threadsafe UnixSockets zstd ""; do
for feature in alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM PSL SPNEGO SSL SSPI threadsafe UnixSockets zstd ''; do
test -n "$feature" && echo "$feature"
done
;;

--protocols)
# shellcheck disable=SC2043
for protocol in DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS IPFS IPNS LDAP LDAPS MQTT POP3 POP3S RTSP SCP SFTP SMB SMBS SMTP SMTPS TELNET TFTP; do
for protocol in DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS IPFS IPNS LDAP LDAPS MQTT POP3 POP3S RTSP SCP SFTP SMB SMBS SMTP SMTPS TELNET TFTP WS WSS; do
echo "$protocol"
done
;;

--version)
echo 'libcurl 8.10.1'
echo 'libcurl 8.11.0'
exit 0
;;

--checkfor)
checkfor=$2
checkfor="$2"
cmajor=`echo "$checkfor" | cut -d. -f1`
cminor=`echo "$checkfor" | 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-pre1
cpatch=`echo "$checkfor" | cut -d. -f3 | cut -d- -f1`

vmajor=`echo '8.10.1' | cut -d. -f1`
vminor=`echo '8.10.1' | cut -d. -f2`
vmajor=`echo '8.11.0' | cut -d. -f1`
vminor=`echo '8.11.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-pre1
vpatch=`echo '8.10.1' | cut -d. -f3 | cut -d- -f1`
vpatch=`echo '8.11.0' | cut -d. -f3 | cut -d- -f1`

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

echo "requested version $checkfor is newer than existing 8.10.1"
echo "requested version $checkfor is newer than existing 8.11.0"
exit 1
;;

--vernum)
echo '080a01'
echo '080b00'
exit 0
;;

Expand All @@ -142,25 +142,25 @@ while test "$#" -gt 0; do
;;

--cflags)
if test "X$cppflag_curl_staticlib" = "X-DCURL_STATICLIB"; then
CPPFLAG_CURL_STATICLIB="-DCURL_STATICLIB "
if test "X$cppflag_curl_staticlib" = 'X-DCURL_STATICLIB'; then
CPPFLAG_CURL_STATICLIB='-DCURL_STATICLIB '
else
CPPFLAG_CURL_STATICLIB=""
CPPFLAG_CURL_STATICLIB=''
fi
if test "X${prefix}/include" = "X/usr/include"; then
if test "X${prefix}/include" = 'X/usr/include'; then
echo "${CPPFLAG_CURL_STATICLIB}"
else
echo "${CPPFLAG_CURL_STATICLIB}-I${prefix}/include"
fi
;;

--libs)
if test "X${exec_prefix}/lib" != "X/usr/lib" -a "X${exec_prefix}/lib" != "X/usr/lib64"; then
if test "X${exec_prefix}/lib" != 'X/usr/lib' -a "X${exec_prefix}/lib" != 'X/usr/lib64'; then
CURLLIBDIR="-L${exec_prefix}/lib "
else
CURLLIBDIR=""
CURLLIBDIR=''
fi
if test "Xyes" = "Xno"; then
if test 'Xyes' = 'Xno'; then
echo "${CURLLIBDIR}-lcurl -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32"
else
echo "${CURLLIBDIR}-lcurl"
Expand All @@ -172,8 +172,8 @@ while test "$#" -gt 0; do
;;

--static-libs)
if test "Xno" != "Xno" ; then
echo "${exec_prefix}/lib/libcurl.a" -Wl,--no-seh -Wl,--large-address-aware -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
if test 'Xno' != 'Xno'; then
echo "${exec_prefix}/lib/libcurl.a -Wl,--no-seh -Wl,--large-address-aware -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32"
else
echo 'curl was built with static libraries disabled' >&2
exit 1
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.
34 changes: 17 additions & 17 deletions mingw32/include/curl/curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@
*/

#ifdef CURL_NO_OLDIES
#define CURL_STRICTER
#define CURL_STRICTER /* not used since 8.11.0 */
#endif

/* Compile-time deprecation macros. */
#if (defined(__GNUC__) && \
((__GNUC__ > 12) || ((__GNUC__ == 12) && (__GNUC_MINOR__ >= 1 ))) || \
defined(__IAR_SYSTEMS_ICC__)) && \
!defined(__INTEL_COMPILER) && \
#if (defined(__GNUC__) && \
((__GNUC__ > 12) || ((__GNUC__ == 12) && (__GNUC_MINOR__ >= 1))) || \
(defined(__clang__) && __clang_major__ >= 3) || \
defined(__IAR_SYSTEMS_ICC__)) && \
!defined(__INTEL_COMPILER) && \
!defined(CURL_DISABLE_DEPRECATION) && !defined(BUILDING_LIBCURL)
#define CURL_DEPRECATED(version, message) \
__attribute__((deprecated("since " # version ". " message)))
Expand Down Expand Up @@ -113,13 +114,8 @@
extern "C" {
#endif

#if defined(BUILDING_LIBCURL) || defined(CURL_STRICTER)
typedef struct Curl_easy CURL;
typedef struct Curl_share CURLSH;
#else
typedef void CURL;
typedef void CURLSH;
#endif

/*
* libcurl external API function linkage decorations.
Expand Down Expand Up @@ -253,12 +249,12 @@ typedef int (*curl_xferinfo_callback)(void *clientp,
#endif

#ifndef CURL_MAX_WRITE_SIZE
/* Tests have proven that 20K is a very bad buffer size for uploads on
Windows, while 16K for some odd reason performed a lot better.
We do the ifndef check to allow this value to easier be changed at build
time for those who feel adventurous. The practical minimum is about
400 bytes since libcurl uses a buffer of this size as a scratch area
(unrelated to network send operations). */
/* Tests have proven that 20K is a bad buffer size for uploads on Windows,
while 16K for some odd reason performed a lot better. We do the ifndef
check to allow this value to easier be changed at build time for those
who feel adventurous. The practical minimum is about 400 bytes since
libcurl uses a buffer of this size as a scratch area (unrelated to
network send operations). */
#define CURL_MAX_WRITE_SIZE 16384
#endif

Expand Down Expand Up @@ -942,6 +938,9 @@ typedef enum {
a client certificate for authentication. (Schannel) */
#define CURLSSLOPT_AUTO_CLIENT_CERT (1<<5)

/* If possible, send data using TLS 1.3 early data */
#define CURLSSLOPT_EARLYDATA (1<<6)

/* The default connection attempt delay in milliseconds for happy eyeballs.
CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 and happy-eyeballs-timeout-ms.d document
this value, keep them in sync. */
Expand Down Expand Up @@ -2953,7 +2952,8 @@ typedef enum {
CURLINFO_QUEUE_TIME_T = CURLINFO_OFF_T + 65,
CURLINFO_USED_PROXY = CURLINFO_LONG + 66,
CURLINFO_POSTTRANSFER_TIME_T = CURLINFO_OFF_T + 67,
CURLINFO_LASTONE = 67
CURLINFO_EARLYDATA_SENT_T = CURLINFO_OFF_T + 68,
CURLINFO_LASTONE = 68
} CURLINFO;

/* CURLINFO_RESPONSE_CODE is the new name for the option previously known as
Expand Down
10 changes: 5 additions & 5 deletions mingw32/include/curl/curlver.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@

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

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

/* This is the numeric version of the libcurl version number, meant for easier
parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will
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 0x080a01
#define LIBCURL_VERSION_NUM 0x080b00

/*
* 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 "2024-09-18"
#define LIBCURL_TIMESTAMP "2024-11-06"

#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
#define CURL_AT_LEAST_VERSION(x,y,z) \
Expand Down
18 changes: 7 additions & 11 deletions mingw32/include/curl/multi.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,7 @@
extern "C" {
#endif

#if defined(BUILDING_LIBCURL) || defined(CURL_STRICTER)
typedef struct Curl_multi CURLM;
#else
typedef void CURLM;
#endif

typedef enum {
CURLM_CALL_MULTI_PERFORM = -1, /* please call curl_multi_perform() or
Expand Down Expand Up @@ -248,13 +244,13 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
* The data the returned pointer points to will not survive calling
* curl_multi_cleanup().
*
* The 'CURLMsg' struct is meant to be very simple and only contain
* very basic information. If more involved information is wanted,
* we will provide the particular "transfer handle" in that struct
* and that should/could/would be used in subsequent
* curl_easy_getinfo() calls (or similar). The point being that we
* must never expose complex structs to applications, as then we will
* undoubtably get backwards compatibility problems in the future.
* The 'CURLMsg' struct is meant to be simple and only contain basic
* information. If more involved information is wanted, we will
* provide the particular "transfer handle" in that struct and that
* should/could/would be used in subsequent curl_easy_getinfo() calls
* (or similar). The point being that we must never expose complex
* structs to applications, as then we will undoubtably get backwards
* compatibility problems in the future.
*
* Returns: A pointer to a filled-in struct, or NULL if it failed or ran out
* of structs. It also writes the number of messages left in the
Expand Down
8 changes: 4 additions & 4 deletions mingw32/lib/pkgconfig/libcurl.pc
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ prefix=/mingw32
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
supported_protocols="DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS IPFS IPNS LDAP LDAPS MQTT POP3 POP3S RTSP SCP SFTP SMB SMBS SMTP SMTPS TELNET TFTP"
supported_protocols="DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS IPFS IPNS LDAP LDAPS MQTT POP3 POP3S RTSP SCP SFTP SMB SMBS SMTP SMTPS TELNET TFTP WS WSS"
supported_features="alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM PSL SPNEGO SSL SSPI threadsafe UnixSockets zstd"

Name: libcurl
URL: https://curl.se/
Description: Library to transfer files with ftp, http, etc.
Version: 8.10.1
Description: Library to transfer files with HTTP, FTP, etc.
Version: 8.11.0
Requires:
Requires.private: libidn2,zlib,libbrotlidec,libzstd,libpsl,libssh2
Libs: -L${libdir} -lcurl
Libs.private: -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
Libs.private: -Wl,--no-seh -Wl,--large-address-aware -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
Cflags: -I${includedir}
Cflags.private: -DCURL_STATICLIB
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 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_POSTTRANSFER_TIME_T.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_QUEUE_TIME_T.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_USED_PROXY.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 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_ECH.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.
Loading

0 comments on commit 011dce7

Please sign in to comment.