aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-12-09 16:05:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-12-09 16:05:57 +0000
commit49f75ee8ce690c3397b5ff01e313629ca89e9235 (patch)
treedb307b542bc91b25b7439715ead759a14517b9bd /lib/urldata.h
parent4bcc866c52d5d5eaae18bda4b2afad8014b23683 (diff)
A normal POST now provides data to the main transfer loop via the usual
read callback, and thus won't put a lot of stress on the request sending code (which currently does an ugly loop).
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 2b51008bc..6e66d2483 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -165,6 +165,8 @@ struct HTTP {
/* For FORM posting */
struct Form form;
struct Curl_chunker chunk;
+
+ char *postdata; /* for regular POSTs */
};
/****************************************************************************