aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-12 08:55:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-12 08:55:47 +0000
commit1ebda8fa0eedf04a9759bd08b904199b2c02a0bf (patch)
treeafd1d5e831a414caa3f3c045045e94c341dd637a /lib/urldata.h
parent9af532e6624dc9d61ce025a6d114102eecfb5eec (diff)
Added CURLOPT_POSTFIELDSIZE_LARGE to offer a large file version of the
CURLOPT_POSTFIELDSIZE option to allow really big HTTP POSTs.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 4e7b14e3f..1338c666e 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -780,9 +780,9 @@ struct UserDefined {
char *useragent; /* User-Agent string */
char *encoding; /* Accept-Encoding string */
char *postfields; /* if POST, set the fields' values here */
- size_t postfieldsize; /* if POST, this might have a size to use instead of
- strlen(), and then the data *may* be binary (contain
- zero bytes) */
+ curl_off_t postfieldsize; /* if POST, this might have a size to use instead
+ of strlen(), and then the data *may* be binary
+ (contain zero bytes) */
char *ftpport; /* port to send with the FTP PORT command */
char *device; /* network interface to use */
curl_write_callback fwrite; /* function that stores the output */