mirror of
https://github.com/curl/curl.git
synced 2026-08-25 18:13:37 +03:00
Georg Huettenegger's fixes and improvements to curl_formadd()
This commit is contained in:
parent
9835629801
commit
725bd1dddf
2 changed files with 375 additions and 162 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue