mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:23:38 +03:00
parent
381c3d56e3
commit
3a0c600a1e
90 changed files with 463 additions and 593 deletions
|
|
@ -632,7 +632,7 @@ typedef enum {
|
|||
match */
|
||||
CURLE_SSL_INVALIDCERTSTATUS, /* 91 - invalid certificate status */
|
||||
CURLE_HTTP2_STREAM, /* 92 - stream error in HTTP/2 framing layer
|
||||
*/
|
||||
*/
|
||||
CURLE_RECURSIVE_API_CALL, /* 93 - an api function was called from
|
||||
inside a callback */
|
||||
CURLE_AUTH_ERROR, /* 94 - an authentication function returned an
|
||||
|
|
@ -1537,8 +1537,7 @@ typedef enum {
|
|||
|
||||
/* FTP Option that causes missing dirs to be created on the remote server.
|
||||
In 7.19.4 we introduced the convenience enums for this option using the
|
||||
CURLFTP_CREATE_DIR prefix.
|
||||
*/
|
||||
CURLFTP_CREATE_DIR prefix. */
|
||||
CURLOPT(CURLOPT_FTP_CREATE_MISSING_DIRS, CURLOPTTYPE_LONG, 110),
|
||||
|
||||
/* Set this to a bitmask value to enable the particular authentications
|
||||
|
|
@ -1589,7 +1588,7 @@ typedef enum {
|
|||
CURLUSESSL_TRY - try using SSL, proceed anyway otherwise
|
||||
CURLUSESSL_CONTROL - SSL for the control connection or fail
|
||||
CURLUSESSL_ALL - SSL for all communication or fail
|
||||
*/
|
||||
*/
|
||||
CURLOPT(CURLOPT_USE_SSL, CURLOPTTYPE_VALUES, 119),
|
||||
|
||||
/* The _LARGE version of the standard POSTFIELDSIZE option */
|
||||
|
|
@ -1615,7 +1614,7 @@ typedef enum {
|
|||
CURLFTPAUTH_DEFAULT - let libcurl decide
|
||||
CURLFTPAUTH_SSL - try "AUTH SSL" first, then TLS
|
||||
CURLFTPAUTH_TLS - try "AUTH TLS" first, then SSL
|
||||
*/
|
||||
*/
|
||||
CURLOPT(CURLOPT_FTPSSLAUTH, CURLOPTTYPE_VALUES, 129),
|
||||
|
||||
CURLOPTDEPRECATED(CURLOPT_IOCTLFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 130,
|
||||
|
|
@ -1650,8 +1649,7 @@ typedef enum {
|
|||
CURLOPT(CURLOPT_LOCALPORT, CURLOPTTYPE_LONG, 139),
|
||||
|
||||
/* Number of ports to try, including the first one set with LOCALPORT.
|
||||
Thus, setting it to 1 makes no additional attempts but the first.
|
||||
*/
|
||||
Thus, setting it to 1 makes no additional attempts but the first. */
|
||||
CURLOPT(CURLOPT_LOCALPORTRANGE, CURLOPTTYPE_LONG, 140),
|
||||
|
||||
/* no transfer, set up connection and let application use the socket by
|
||||
|
|
|
|||
|
|
@ -56,8 +56,7 @@
|
|||
|
||||
Note: This define is the full hex number and _does not_ use the
|
||||
CURL_VERSION_BITS() macro since curl's own configure script greps for it
|
||||
and needs it to contain the full number.
|
||||
*/
|
||||
and needs it to contain the full number. */
|
||||
#define LIBCURL_VERSION_NUM 0x081600
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -24,20 +24,20 @@
|
|||
*
|
||||
***************************************************************************/
|
||||
/*
|
||||
This is an "external" header file. Do not give away any internals here!
|
||||
|
||||
GOALS
|
||||
|
||||
o Enable a "pull" interface. The application that uses libcurl decides where
|
||||
and when to ask libcurl to get/send data.
|
||||
|
||||
o Enable multiple simultaneous transfers in the same thread without making it
|
||||
complicated for the application.
|
||||
|
||||
o Enable the application to select() on its own file descriptors and curl's
|
||||
file descriptors simultaneous easily.
|
||||
|
||||
*/
|
||||
* This is an "external" header file. Do not give away any internals here!
|
||||
*
|
||||
* GOALS
|
||||
*
|
||||
* o Enable a "pull" interface. The application that uses libcurl decides where
|
||||
* and when to ask libcurl to get/send data.
|
||||
*
|
||||
* o Enable multiple simultaneous transfers in the same thread without making
|
||||
* it complicated for the application.
|
||||
*
|
||||
* o Enable the application to select() on its own file descriptors and curl's
|
||||
* file descriptors simultaneous easily.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* This header file should not really need to include "curl.h" since curl.h
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue