diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-12 21:40:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-12 21:40:59 +0000 |
commit | 131645dc310a70d8d8ca1df00ec7329bc80c940e (patch) | |
tree | a61811e0b878f4b513ff1eaa5404c26037d7f88e /include | |
parent | dafd644fe7706e0bf555aa6c92c49e3a3ea7ccf6 (diff) | |
download | curl-131645dc310a70d8d8ca1df00ec7329bc80c940e.tar.gz |
Chris Combes added CURLFORM_BUFFER, CURLFORM_BUFFERPTR, CURLFORM_BUFFERLENGTH
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 7dc7b70b4..686204210 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -65,6 +65,11 @@ struct curl_httppost { long namelength; /* length of name length */ char *contents; /* pointer to allocated data contents */ long contentslength; /* length of contents field */ + + /* CMC: Added support for buffer uploads */ + char *buffer; /* pointer to allocated buffer contents */ + long bufferlength; /* length of buffer field */ + char *contenttype; /* Content-Type */ struct curl_slist* contentheader; /* list of extra headers for this form */ struct curl_httppost *more; /* if one field name has more than one file, this @@ -76,6 +81,11 @@ struct curl_httppost { do not free in formfree */ #define HTTPPOST_PTRCONTENTS (1<<3) /* contents is only stored pointer do not free in formfree */ + +/* CMC: Added support for buffer uploads */ +#define HTTPPOST_BUFFER (1<<4) /* upload file from buffer */ +#define HTTPPOST_PTRBUFFER (1<<5) /* upload file from pointer contents */ + char *showfilename; /* The file name to show. If not set, the actual file name will be used (if this is a file part) */ }; @@ -658,6 +668,11 @@ typedef enum { CFINIT(ARRAY), CFINIT(OBSOLETE), CFINIT(FILE), + + CFINIT(BUFFER), + CFINIT(BUFFERPTR), + CFINIT(BUFFERLENGTH), + CFINIT(CONTENTTYPE), CFINIT(CONTENTHEADER), CFINIT(FILENAME), |