Skip to content

Commit

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

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Dec 16, 2024
1 parent e281459 commit 9356836
Show file tree
Hide file tree
Showing 1,568 changed files with 64 additions and 52 deletions.
14 changes: 7 additions & 7 deletions mingw32/bin/curl-config
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ while test "$#" -gt 0; do
;;

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

Expand All @@ -108,11 +108,11 @@ while test "$#" -gt 0; do
# 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.11.0' | cut -d. -f1`
vminor=`echo '8.11.0' | cut -d. -f2`
vmajor=`echo '8.11.1' | cut -d. -f1`
vminor=`echo '8.11.1' | 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.11.0' | cut -d. -f3 | cut -d- -f1`
vpatch=`echo '8.11.1' | 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.11.0"
echo "requested version $checkfor is newer than existing 8.11.1"
exit 1
;;

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

Expand Down Expand Up @@ -173,7 +173,7 @@ 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"
echo "${exec_prefix}/lib/libcurl.a -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.
10 changes: 8 additions & 2 deletions mingw32/include/curl/curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -551,14 +551,14 @@ typedef enum {
CURLE_FTP_COULDNT_USE_REST, /* 31 - the REST command failed */
CURLE_OBSOLETE32, /* 32 - NOT USED */
CURLE_RANGE_ERROR, /* 33 - RANGE "command" did not work */
CURLE_HTTP_POST_ERROR, /* 34 */
CURLE_OBSOLETE34, /* 34 */
CURLE_SSL_CONNECT_ERROR, /* 35 - wrong when connecting with SSL */
CURLE_BAD_DOWNLOAD_RESUME, /* 36 - could not resume download */
CURLE_FILE_COULDNT_READ_FILE, /* 37 */
CURLE_LDAP_CANNOT_BIND, /* 38 */
CURLE_LDAP_SEARCH_FAILED, /* 39 */
CURLE_OBSOLETE40, /* 40 - NOT USED */
CURLE_FUNCTION_NOT_FOUND, /* 41 - NOT USED starting with 7.53.0 */
CURLE_OBSOLETE41, /* 41 - NOT USED starting with 7.53.0 */
CURLE_ABORTED_BY_CALLBACK, /* 42 */
CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */
CURLE_OBSOLETE44, /* 44 - NOT USED */
Expand Down Expand Up @@ -643,6 +643,12 @@ typedef enum {
#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all
the obsolete stuff removed! */

/* removed in 7.53.0 */
#define CURLE_FUNCTION_NOT_FOUND CURLE_OBSOLETE41

/* removed in 7.56.0 */
#define CURLE_HTTP_POST_ERROR CURLE_OBSOLETE34

/* Previously obsolete error code reused in 7.38.0 */
#define CURLE_OBSOLETE16 CURLE_HTTP2

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,13 +32,13 @@

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

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

/* 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 0x080b00
#define LIBCURL_VERSION_NUM 0x080b01

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

#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
#define CURL_AT_LEAST_VERSION(x,y,z) \
Expand Down
4 changes: 2 additions & 2 deletions mingw32/lib/pkgconfig/libcurl.pc
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ supported_features="alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos
Name: libcurl
URL: https://curl.se/
Description: Library to transfer files with HTTP, FTP, etc.
Version: 8.11.0
Version: 8.11.1
Requires:
Requires.private: libidn2,zlib,libbrotlidec,libzstd,libpsl,libssh2
Libs: -L${libdir} -lcurl
Libs.private: -Wl,--no-seh -Wl,--large-address-aware -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
Libs.private: -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 modified mingw32/share/man/man3/CURLINFO_EARLYDATA_SENT_T.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_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 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_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.
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.
Loading

0 comments on commit 9356836

Please sign in to comment.