diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-08 09:13:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-08 09:13:19 +0000 |
commit | f9f1f0e31635a551f51d2b9e4a7afde4ad4027ca (patch) | |
tree | eb7c52202fe74d2c784b84394b7e788df6fefc76 /include | |
parent | a9afe6aa84dd1f9b4bdf249dc8e56dbce89ed059 (diff) |
Early Ehlinger's CURLOPT_FTP_CREATE_MISSING_DIRS patch was applied
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 71c490c5a..b646d0e58 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -29,7 +29,7 @@ /* This is the version number of the libcurl package from which this header file origins: */ -#define LIBCURL_VERSION "7.10.6" +#define LIBCURL_VERSION "7.10.7-pre2" /* 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 0x070a06 +#define LIBCURL_VERSION_NUM 0x070a07 #include <stdio.h> @@ -669,6 +669,9 @@ typedef enum { argument */ CINIT(SSL_CTX_DATA, OBJECTPOINT, 109), + /* FTP Option that causes missing dirs to be created on the remote server */ + CINIT(FTP_CREATE_MISSING_DIRS, LONG, 110), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |