2009-09-17 10:23:27 -04:00
|
|
|
#ifndef HEADER_CURL_FORMDATA_H
|
|
|
|
#define HEADER_CURL_FORMDATA_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-14 04:51:43 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-09-02 12:47:10 -04:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04: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-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-14 04:51:43 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05: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 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2004-06-14 04:51:43 -04:00
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
/* used by FormAdd for temporary storage */
|
|
|
|
typedef struct FormInfo {
|
|
|
|
char *name;
|
2004-05-11 10:48:53 -04:00
|
|
|
bool name_alloc;
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t namelength;
|
2001-08-28 04:54:33 -04:00
|
|
|
char *value;
|
2004-05-11 10:48:53 -04:00
|
|
|
bool value_alloc;
|
2015-10-23 18:52:25 -04:00
|
|
|
curl_off_t contentslength;
|
2001-08-28 04:54:33 -04:00
|
|
|
char *contenttype;
|
2004-05-12 05:02:23 -04:00
|
|
|
bool contenttype_alloc;
|
2001-08-28 04:54:33 -04:00
|
|
|
long flags;
|
2002-06-12 17:40:59 -04:00
|
|
|
char *buffer; /* pointer to existing buffer used for file upload */
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t bufferlength;
|
2002-03-11 10:18:59 -05:00
|
|
|
char *showfilename; /* The file name to show. If not set, the actual
|
|
|
|
file name will be used */
|
2004-05-12 05:02:23 -04:00
|
|
|
bool showfilename_alloc;
|
2008-03-31 06:02:23 -04:00
|
|
|
char *userp; /* pointer for the read callback */
|
2016-11-23 01:53:24 -05:00
|
|
|
struct curl_slist *contentheader;
|
2001-08-28 04:54:33 -04:00
|
|
|
struct FormInfo *more;
|
|
|
|
} FormInfo;
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_getformdata(struct Curl_easy *data,
|
2017-09-05 05:45:21 -04:00
|
|
|
curl_mimepart *,
|
2010-10-20 08:57:43 -04:00
|
|
|
struct curl_httppost *post,
|
2017-09-02 12:47:10 -04:00
|
|
|
curl_read_callback fread_func);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2009-09-17 10:23:27 -04:00
|
|
|
#endif /* HEADER_CURL_FORMDATA_H */
|