diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-11-20 15:00:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-11-20 15:00:50 +0000 |
commit | ca0fd33d2d3ecca13bc78893e165a34682b4dcd2 (patch) | |
tree | dabe130a246fdf0d04f5d3196b644729e6d2ef15 /include | |
parent | 271f96f78f04f556ba953b10d31bfed2202ad439 (diff) |
Georg Horn's STARTTRANSFER_TIME patch
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 3a815ad55..48b82d177 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -584,8 +584,8 @@ CURLcode curl_global_init(long flags); void curl_global_cleanup(void); /* This is the version number */ -#define LIBCURL_VERSION "7.9.1" -#define LIBCURL_VERSION_NUM 0x070901 +#define LIBCURL_VERSION "7.9.2-pre3" +#define LIBCURL_VERSION_NUM 0x070902 /* linked-list structure for the CURLOPT_QUOTE option (and other) */ struct curl_slist { @@ -635,7 +635,9 @@ typedef enum { CURLINFO_CONTENT_LENGTH_DOWNLOAD = CURLINFO_DOUBLE + 15, CURLINFO_CONTENT_LENGTH_UPLOAD = CURLINFO_DOUBLE + 16, - CURLINFO_LASTONE = 17 + CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17, + + CURLINFO_LASTONE = 18 } CURLINFO; /* unfortunately, the easy.h include file needs the options and info stuff |