diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-04-16 07:59:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-16 07:59:20 +0000 |
commit | 62d205a2ec38ed54e359625d69a7210dc274f093 (patch) | |
tree | daafe4a6819326a2a00694a6352844770dfef2b4 /include | |
parent | 29e873b12d9723a7becb6fb2a06f7f346d3e3157 (diff) | |
download | curl-62d205a2ec38ed54e359625d69a7210dc274f093.tar.gz |
Dirk Manske brought the patch that introduces two new CURLINFO_* values:
CURLINFO_REDIRECT_TIME and CURLINFO_REDIRECT_COUNT.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 08ee4cb9e..abfe3e523 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -718,9 +718,12 @@ typedef enum { CURLINFO_CONTENT_TYPE = CURLINFO_STRING + 18, + CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE + 19, + CURLINFO_REDIRECT_COUNT = CURLINFO_LONG + 20, + /* Fill in new entries here! */ - CURLINFO_LASTONE = 19 + CURLINFO_LASTONE = 21 } CURLINFO; /* unfortunately, the easy.h and multi.h include files need options and info |