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).
This commit is contained in:
Daniel Stenberg
2002-12-09 16:05:57 +00:00
parent 4bcc866c52
commit 49f75ee8ce
2 changed files with 46 additions and 16 deletions

View File

@@ -165,6 +165,8 @@ struct HTTP {
/* For FORM posting */
struct Form form;
struct Curl_chunker chunk;
char *postdata; /* for regular POSTs */
};
/****************************************************************************