diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-05-09 07:42:47 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-05-09 07:42:47 +0000 | 
| commit | 3c7e33388e22e01cf90918e8c452f605584ce1ca (patch) | |
| tree | 4d021b0dd447e0cd28a3a08cb3560fa662bbac45 | |
| parent | 7b0f35edb637b8c66a3768075feff6b7b9ce454a (diff) | |
CURLOPT_FTP_USE_EPRT added
| -rw-r--r-- | include/curl/curl.h | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 5ae43db3a..882956ece 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -624,6 +624,11 @@ typedef enum {       and password to whatever host the server decides. */    CINIT(UNRESTRICTED_AUTH, LONG, 105), +  /* Specificly switch on or off the FTP engine's use of the EPRT command ( it +     also disables the LPRT attempt). By default, those ones will always be +     attempted before the good old traditional PORT command. */      +  CINIT(FTP_USE_EPRT, LONG, 106), +    CURLOPT_LASTENTRY /* the last unused */  } CURLoption; @@ -814,8 +819,8 @@ CURLcode curl_global_init(long flags);  void curl_global_cleanup(void);  /* This is the version number */ -#define LIBCURL_VERSION "7.10.4" -#define LIBCURL_VERSION_NUM 0x070a04 +#define LIBCURL_VERSION "7.10.5-pre2" +#define LIBCURL_VERSION_NUM 0x070a05  /* linked-list structure for the CURLOPT_QUOTE option (and other) */  struct curl_slist {  | 
