mirror of
https://github.com/curl/curl.git
synced 2026-08-24 17:53:33 +03:00
Early Ehlinger's CURLOPT_FTP_RESPONSE_TIMEOUT patch applied.
This commit is contained in:
parent
6a678f6d64
commit
f2d422235b
5 changed files with 40 additions and 3 deletions
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
/* This is the version number of the libcurl package from which this header
|
||||
file origins: */
|
||||
#define LIBCURL_VERSION "7.10.7"
|
||||
#define LIBCURL_VERSION "7.10.8-test2"
|
||||
|
||||
/* This is the numeric version of the libcurl version number, meant for easier
|
||||
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
always a greater number in a more recent release. It makes comparisons with
|
||||
greater than and less than work.
|
||||
*/
|
||||
#define LIBCURL_VERSION_NUM 0x070a07
|
||||
#define LIBCURL_VERSION_NUM 0x070a08
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
|
@ -678,6 +678,12 @@ typedef enum {
|
|||
Note that setting multiple bits may cause extra network round-trips. */
|
||||
CINIT(PROXYAUTH, LONG, 111),
|
||||
|
||||
/* FPT Option that changes the timeout, in seconds, associated with
|
||||
getting a response. This is different from transfer timeout time and
|
||||
essentially places a demand on the FTP server to acknowledge commands
|
||||
in a timely manner. */
|
||||
CINIT(FTP_RESPONSE_TIMEOUT, LONG , 112),
|
||||
|
||||
CURLOPT_LASTENTRY /* the last unused */
|
||||
} CURLoption;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue