2009-09-17 22:23:27 +08:00
|
|
|
#ifndef HEADER_CURL_FORMDATA_H
|
|
|
|
#define HEADER_CURL_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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-09-03 00:47:10 +08:00
|
|
|
* Copyright (C) 1998 - 2017, 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
|
2016-02-03 07:19:02 +08:00
|
|
|
* are also available at https://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
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2004-06-14 16:51:43 +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;
|
2015-10-24 06:52:25 +08:00
|
|
|
curl_off_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;
|
2008-03-31 18:02:23 +08:00
|
|
|
char *userp; /* pointer for the read callback */
|
2016-11-23 14:53:24 +08:00
|
|
|
struct curl_slist *contentheader;
|
2001-08-28 16:54:33 +08:00
|
|
|
struct FormInfo *more;
|
|
|
|
} FormInfo;
|
|
|
|
|
2016-06-21 21:47:12 +08:00
|
|
|
CURLcode Curl_getformdata(struct Curl_easy *data,
|
2017-09-05 17:45:21 +08:00
|
|
|
curl_mimepart *,
|
2010-10-20 20:57:43 +08:00
|
|
|
struct curl_httppost *post,
|
2017-09-03 00:47:10 +08:00
|
|
|
curl_read_callback fread_func);
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2009-09-17 22:23:27 +08:00
|
|
|
#endif /* HEADER_CURL_FORMDATA_H */
|