Skip to content
Snippets Groups Projects
Commit 725bd1dd authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Georg Huettenegger's fixes and improvements to curl_formadd()

parent 98356298
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -36,6 +36,17 @@ struct Form {
been sent in a previous invoke */
};
/* used by FormAdd for temporary storage */
typedef struct FormInfo {
char *name;
long namelength;
char *value;
long contentslength;
char *contenttype;
long flags;
struct FormInfo *more;
} FormInfo;
int Curl_FormInit(struct Form *form, struct FormData *formdata );
struct FormData *Curl_getFormData(struct HttpPost *post,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment