1999-12-29 22:20:26 +08:00
|
|
|
#ifndef __FORMDATA_H
|
|
|
|
#define __FORMDATA_H
|
|
|
|
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-06-14 16:51:43 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2007-01-27 11:43:05 +08:00
|
|
|
* Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-14 16:51:43 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* $Id$
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2004-06-14 16:51:43 +08:00
|
|
|
|
|
|
|
enum formtype {
|
2007-01-14 22:57:51 +08:00
|
|
|
FORM_DATA, /* form metadata (convert to network encoding if necessary) */
|
|
|
|
FORM_CONTENT, /* form content (never convert) */
|
|
|
|
FORM_FILE /* 'line' points to a file name we should read from
|
|
|
|
to create the form data (never convert) */
|
2004-06-14 16:51:43 +08:00
|
|
|
};
|
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
/* plain and simple linked list with lines to send */
|
|
|
|
struct FormData {
|
|
|
|
struct FormData *next;
|
2004-06-14 16:51:43 +08:00
|
|
|
enum formtype type;
|
1999-12-29 22:20:26 +08:00
|
|
|
char *line;
|
2004-02-26 21:40:43 +08:00
|
|
|
size_t length;
|
1999-12-29 22:20:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Form {
|
|
|
|
struct FormData *data; /* current form line to send */
|
2004-06-14 16:51:43 +08:00
|
|
|
size_t sent; /* number of bytes of the current line that has
|
|
|
|
already been sent in a previous invoke */
|
|
|
|
FILE *fp; /* file to read from */
|
1999-12-29 22:20:26 +08:00
|
|
|
};
|
|
|
|
|
2001-08-28 16:54:33 +08:00
|
|
|
/* used by FormAdd for temporary storage */
|
|
|
|
typedef struct FormInfo {
|
|
|
|
char *name;
|
2004-05-11 22:48:53 +08:00
|
|
|
bool name_alloc;
|
2004-02-26 21:40:43 +08:00
|
|
|
size_t namelength;
|
2001-08-28 16:54:33 +08:00
|
|
|
char *value;
|
2004-05-11 22:48:53 +08:00
|
|
|
bool value_alloc;
|
2004-02-26 21:40:43 +08:00
|
|
|
size_t contentslength;
|
2001-08-28 16:54:33 +08:00
|
|
|
char *contenttype;
|
2004-05-12 17:02:23 +08:00
|
|
|
bool contenttype_alloc;
|
2001-08-28 16:54:33 +08:00
|
|
|
long flags;
|
2002-06-13 05:40:59 +08:00
|
|
|
char *buffer; /* pointer to existing buffer used for file upload */
|
2004-02-26 21:40:43 +08:00
|
|
|
size_t bufferlength;
|
2002-03-11 23:18:59 +08:00
|
|
|
char *showfilename; /* The file name to show. If not set, the actual
|
|
|
|
file name will be used */
|
2004-05-12 17:02:23 +08:00
|
|
|
bool showfilename_alloc;
|
2001-12-14 20:59:16 +08:00
|
|
|
struct curl_slist* contentheader;
|
2001-08-28 16:54:33 +08:00
|
|
|
struct FormInfo *more;
|
|
|
|
} FormInfo;
|
|
|
|
|
2001-01-05 18:11:41 +08:00
|
|
|
int Curl_FormInit(struct Form *form, struct FormData *formdata );
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2002-04-15 19:19:03 +08:00
|
|
|
CURLcode
|
|
|
|
Curl_getFormData(struct FormData **,
|
2004-01-22 19:54:00 +08:00
|
|
|
struct curl_httppost *post,
|
2006-07-28 06:35:09 +08:00
|
|
|
const char *custom_contenttype,
|
2004-03-12 22:22:16 +08:00
|
|
|
curl_off_t *size);
|
1999-12-29 22:20:26 +08:00
|
|
|
|
|
|
|
/* fread() emulation */
|
2004-02-26 21:40:43 +08:00
|
|
|
size_t Curl_FormReader(char *buffer,
|
|
|
|
size_t size,
|
|
|
|
size_t nitems,
|
|
|
|
FILE *mydata);
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2004-04-23 18:37:52 +08:00
|
|
|
/*
|
|
|
|
* Curl_formpostheader() returns the first line of the formpost, the
|
|
|
|
* request-header part (which is not part of the request-body like the rest of
|
|
|
|
* the post).
|
|
|
|
*/
|
|
|
|
char *Curl_formpostheader(void *formp, size_t *len);
|
2001-08-21 21:18:07 +08:00
|
|
|
|
2001-01-05 18:11:41 +08:00
|
|
|
char *Curl_FormBoundary(void);
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2007-01-14 22:57:51 +08:00
|
|
|
void Curl_formclean(struct FormData **);
|
|
|
|
|
|
|
|
CURLcode Curl_formconvert(struct SessionHandle *, struct FormData *);
|
1999-12-29 22:20:26 +08:00
|
|
|
|
|
|
|
#endif
|
2001-08-21 21:18:07 +08:00
|
|
|
|