Skip to content

Commit

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

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Jul 24, 2024
1 parent 907acc5 commit b0ee7f0
Show file tree
Hide file tree
Showing 1,572 changed files with 251 additions and 217 deletions.
22 changes: 12 additions & 10 deletions mingw32/bin/curl-config
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
#
###########################################################################

# shellcheck disable=SC2006

prefix="/mingw32"
# Used in ${exec_prefix}/lib
# shellcheck disable=SC2034
Expand Down Expand Up @@ -81,7 +83,7 @@ while test "$#" -gt 0; do
;;

--feature|--features)
for feature in AsynchDNS HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile NTLM PSL SPNEGO SSL SSPI UnixSockets alt-svc brotli libz threadsafe 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
;;
Expand All @@ -94,23 +96,23 @@ while test "$#" -gt 0; do
;;

--version)
echo 'libcurl 8.8.0'
echo 'libcurl 8.9.0'
exit 0
;;

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

vmajor=$(echo '8.8.0' | cut -d. -f1)
vminor=$(echo '8.8.0' | cut -d. -f2)
vmajor=`echo '8.9.0' | cut -d. -f1`
vminor=`echo '8.9.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.8.0' | cut -d. -f3 | cut -d- -f1)
vpatch=`echo '8.9.0' | cut -d. -f3 | cut -d- -f1`

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

echo "requested version $checkfor is newer than existing 8.8.0"
echo "requested version $checkfor is newer than existing 8.9.0"
exit 1
;;

--vernum)
echo '080800'
echo '080900'
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.
125 changes: 68 additions & 57 deletions mingw32/include/curl/curl.h

Large diffs are not rendered by default.

10 changes: 5 additions & 5 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.8.0"
#define LIBCURL_VERSION "8.9.0"

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

/* This is the numeric version of the libcurl version number, meant for easier
Expand All @@ -48,7 +48,7 @@
Where XX, YY and ZZ are the main version, release and patch numbers in
hexadecimal (using 8 bits each). All three numbers are always represented
using two digits. 1.2 would appear as "0x010200" while version 9.11.7
using two digits. 1.2 would appear as "0x010200" while version 9.11.7
appears as "0x090b07".
This 6-digit (24 bits) hexadecimal number does not show pre-release number,
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 0x080800
#define LIBCURL_VERSION_NUM 0x080900

/*
* 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-05-22"
#define LIBCURL_TIMESTAMP "2024-07-24"

#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
#define CURL_AT_LEAST_VERSION(x,y,z) \
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/curl/easy.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ CURL_EXTERN void curl_easy_cleanup(CURL *curl);
*
* Request internal information from the curl session with this function.
* The third argument MUST be pointing to the specific type of the used option
* which is documented in each man page of the option. The data pointed to
* which is documented in each manpage of the option. The data pointed to
* will be filled in accordingly and can be relied upon only if the function
* returns CURLE_OK. This function is intended to get used *AFTER* a performed
* transfer, all results from this function are undefined until the transfer
Expand Down
3 changes: 2 additions & 1 deletion mingw32/include/curl/mprintf.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
extern "C" {
#endif

#if (defined(__GNUC__) || defined(__clang__)) && \
#if (defined(__GNUC__) || defined(__clang__) || \
defined(__IAR_SYSTEMS_ICC__)) && \
defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \
!defined(CURL_NO_FMT_CHECKS)
#if defined(__MINGW32__) && !defined(__clang__)
Expand Down
16 changes: 8 additions & 8 deletions mingw32/include/curl/multi.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
***************************************************************************/
/*
This is an "external" header file. Don't give away any internals here!
This is an "external" header file. Do not give away any internals here!
GOALS
Expand Down Expand Up @@ -66,7 +66,7 @@ typedef enum {
CURLM_OK,
CURLM_BAD_HANDLE, /* the passed-in handle is not a valid CURLM handle */
CURLM_BAD_EASY_HANDLE, /* an easy handle was not good/valid */
CURLM_OUT_OF_MEMORY, /* if you ever get this, you're in deep sh*t */
CURLM_OUT_OF_MEMORY, /* if you ever get this, you are in deep sh*t */
CURLM_INTERNAL_ERROR, /* this is a libcurl bug */
CURLM_BAD_SOCKET, /* the passed in socket argument did not match */
CURLM_UNKNOWN_OPTION, /* curl_multi_setopt() with unsupported option */
Expand Down Expand Up @@ -109,7 +109,7 @@ struct CURLMsg {
typedef struct CURLMsg CURLMsg;

/* Based on poll(2) structure and values.
* We don't use pollfd and POLL* constants explicitly
* We do not use pollfd and POLL* constants explicitly
* to cover platforms without poll(). */
#define CURL_WAIT_POLLIN 0x0001
#define CURL_WAIT_POLLPRI 0x0002
Expand Down Expand Up @@ -205,7 +205,7 @@ CURL_EXTERN CURLMcode curl_multi_wakeup(CURLM *multi_handle);
/*
* Name: curl_multi_perform()
*
* Desc: When the app thinks there's data available for curl it calls this
* Desc: When the app thinks there is data available for curl it calls this
* function to read/write whatever there is right now. This returns
* as soon as the reads and writes are done. This function does not
* require that there actually is data available for reading or that
Expand Down Expand Up @@ -236,7 +236,7 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
/*
* Name: curl_multi_info_read()
*
* Desc: Ask the multi handle if there's any messages/informationals from
* Desc: Ask the multi handle if there is any messages/informationals from
* the individual transfers. Messages include informationals such as
* error code from the transfer or just the fact that a transfer is
* completed. More details on these should be written down as well.
Expand All @@ -253,7 +253,7 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
* 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'll
* 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
Expand All @@ -268,7 +268,7 @@ CURL_EXTERN CURLMsg *curl_multi_info_read(CURLM *multi_handle,
* Name: curl_multi_strerror()
*
* Desc: The curl_multi_strerror function may be used to turn a CURLMcode
* value into the equivalent human readable error string. This is
* value into the equivalent human readable error string. This is
* useful for printing meaningful error messages.
*
* Returns: A pointer to a null-terminated error message.
Expand All @@ -282,7 +282,7 @@ CURL_EXTERN const char *curl_multi_strerror(CURLMcode);
* Desc: An alternative version of curl_multi_perform() that allows the
* application to pass in one of the file descriptors that have been
* detected to have "action" on them and let libcurl perform.
* See man page for details.
* See manpage for details.
*/
#define CURL_POLL_NONE 0
#define CURL_POLL_IN 1
Expand Down
4 changes: 2 additions & 2 deletions mingw32/include/curl/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* As a general rule, curl_off_t shall not be mapped to off_t. This rule shall
* only be violated if off_t is the only 64-bit data type available and the
* size of off_t is independent of large file support settings. Keep your
* build on the safe side avoiding an off_t gating. If you have a 64-bit
* build on the safe side avoiding an off_t gating. If you have a 64-bit
* off_t then take for sure that another 64-bit data type exists, dig deeper
* and you will find it.
*
Expand Down Expand Up @@ -402,7 +402,7 @@
# define CURL_PULL_SYS_SOCKET_H 1

#else
/* generic "safe guess" on old 32 bit style */
/* generic "safe guess" on old 32-bit style */
# define CURL_TYPEOF_CURL_OFF_T long
# define CURL_FORMAT_CURL_OFF_T "ld"
# define CURL_FORMAT_CURL_OFF_TU "lu"
Expand Down
10 changes: 5 additions & 5 deletions mingw32/include/curl/typecheck-gcc.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
* _curl_easy_setopt_err_sometype below
*
* NOTE: We use two nested 'if' statements here instead of the && operator, in
* order to work around gcc bug #32061. It affects only gcc 4.3.x/4.4.x
* order to work around gcc bug #32061. It affects only gcc 4.3.x/4.4.x
* when compiling with -Wlogical-op.
*
* To add an option that uses the same type as an existing option, you'll just
* need to extend the appropriate _curl_*_option macro
* To add an option that uses the same type as an existing option, you will
* just need to extend the appropriate _curl_*_option macro
*/
#define curl_easy_setopt(handle, option, value) \
__extension__({ \
Expand Down Expand Up @@ -245,7 +245,7 @@ CURLWARNING(_curl_easy_getinfo_err_curl_off_t,

/* To add a new option to one of the groups, just add
* (option) == CURLOPT_SOMETHING
* to the or-expression. If the option takes a long or curl_off_t, you don't
* to the or-expression. If the option takes a long or curl_off_t, you do not
* have to do anything
*/

Expand Down Expand Up @@ -678,7 +678,7 @@ typedef CURLcode (*_curl_ssl_ctx_callback4)(CURL *, const void *,
const void *);
#ifdef HEADER_SSL_H
/* hack: if we included OpenSSL's ssl.h, we know about SSL_CTX
* this will of course break if we're included before OpenSSL headers...
* this will of course break if we are included before OpenSSL headers...
*/
typedef CURLcode (*_curl_ssl_ctx_callback5)(CURL *, SSL_CTX *, void *);
typedef CURLcode (*_curl_ssl_ctx_callback6)(CURL *, SSL_CTX *, const void *);
Expand Down
5 changes: 3 additions & 2 deletions mingw32/include/curl/urlapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,12 @@ typedef enum {
#define CURLU_NO_AUTHORITY (1<<10) /* Allow empty authority when the
scheme is unknown. */
#define CURLU_ALLOW_SPACE (1<<11) /* Allow spaces in the URL */
#define CURLU_PUNYCODE (1<<12) /* get the host name in punycode */
#define CURLU_PUNYCODE (1<<12) /* get the hostname in punycode */
#define CURLU_PUNY2IDN (1<<13) /* punycode => IDN conversion */
#define CURLU_GET_EMPTY (1<<14) /* allow empty queries and fragments
when extracting the URL or the
components */
#define CURLU_NO_GUESS_SCHEME (1<<15) /* for get, do not accept a guess */

typedef struct Curl_URL CURLU;

Expand Down Expand Up @@ -142,7 +143,7 @@ CURL_EXTERN CURLUcode curl_url_set(CURLU *handle, CURLUPart what,

/*
* curl_url_strerror() turns a CURLUcode value into the equivalent human
* readable error string. This is useful for printing meaningful error
* readable error string. This is useful for printing meaningful error
* messages.
*/
CURL_EXTERN const char *curl_url_strerror(CURLUcode);
Expand Down
9 changes: 4 additions & 5 deletions mingw32/lib/pkgconfig/libcurl.pc
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,19 @@
#
###########################################################################

# This should most probably benefit from getting a "Requires:" field added
# dynamically by configure.
#
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_features="AsynchDNS HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile NTLM PSL SPNEGO SSL SSPI UnixSockets alt-svc brotli libz threadsafe zstd"
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.8.0
Version: 8.9.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
Cflags: -I${includedir}
Binary file added 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_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.
Loading

0 comments on commit b0ee7f0

Please sign in to comment.