mirror of
https://github.com/curl/curl.git
synced 2026-08-26 03:13:31 +03:00
cli tool: do not use mime.h private structures.
Option -F generates an intermediate representation of the mime structure that is used later to create the libcurl mime structure and generate the --libcurl statements. Reported-by: Daniel Stenberg Fixes #3532 Closes #3546
This commit is contained in:
parent
b75fb9b5a6
commit
cac0e4a6ad
7 changed files with 543 additions and 478 deletions
|
|
@ -7,7 +7,7 @@
|
|||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
*
|
||||
* This software is licensed as described in the file COPYING, which
|
||||
* you should have received as part of this distribution. The terms
|
||||
|
|
@ -27,6 +27,8 @@
|
|||
|
||||
#include "tool_metalink.h"
|
||||
|
||||
#include "tool_formparse.h"
|
||||
|
||||
typedef enum {
|
||||
ERR_NONE,
|
||||
ERR_BINARY_TERMINAL = 1, /* binary to terminal detected */
|
||||
|
|
@ -176,8 +178,8 @@ struct OperationConfig {
|
|||
curl_off_t condtime;
|
||||
struct curl_slist *headers;
|
||||
struct curl_slist *proxyheaders;
|
||||
curl_mime *mimepost;
|
||||
curl_mime *mimecurrent;
|
||||
tool_mime *mimepost;
|
||||
tool_mime *mimecurrent;
|
||||
struct curl_slist *telnet_options;
|
||||
struct curl_slist *resolve;
|
||||
struct curl_slist *connect_to;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue