diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-08-24 16:27:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-08-24 16:27:04 +0000 |
commit | a1c0a5d0f268340e1fb0ab3230023502c2783cca (patch) | |
tree | dbecb65878a956c0a3a48ca238a879c2e7fcedb0 /include | |
parent | 1be0bf56a6fb4b9c4491b5cdfa81d007f3bb53ba (diff) |
Added CURLOPT_POSTFIELDSIZE
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index a0d05ed80..ad4999e58 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -371,6 +371,9 @@ typedef enum { "[host]:[port]" */ T(PROXYPORT, LONG, 59), + /* size of the POST input data, if strlen() is not good to use */ + T(POSTFIELDSIZE, LONG, 60), + CURLOPT_LASTENTRY /* the last unusued */ } CURLoption; |