tool_cfgable: Removed list_engine flag from config structure
[platform/upstream/curl.git] / src / tool_cfgable.h
1 #ifndef HEADER_CURL_TOOL_CFGABLE_H
2 #define HEADER_CURL_TOOL_CFGABLE_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
11  *
12  * This software is licensed as described in the file COPYING, which
13  * you should have received as part of this distribution. The terms
14  * are also available at http://curl.haxx.se/docs/copyright.html.
15  *
16  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17  * copies of the Software, and permit persons to whom the Software is
18  * furnished to do so, under the terms of the COPYING file.
19  *
20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21  * KIND, either express or implied.
22  *
23  ***************************************************************************/
24 #include "tool_setup.h"
25
26 #include "tool_sdecls.h"
27
28 #include "tool_metalink.h"
29
30 struct Configurable {
31   CURL *easy;               /* once we have one, we keep it here */
32   bool remote_time;
33   char *random_file;
34   char *egd_file;
35   char *useragent;
36   char *cookie;             /* single line with specified cookies */
37   char *cookiejar;          /* write to this file */
38   char *cookiefile;         /* read from this file */
39   bool cookiesession;       /* new session? */
40   bool encoding;            /* Accept-Encoding please */
41   bool tr_encoding;         /* Transfer-Encoding please */
42   unsigned long authtype;   /* auth bitmask */
43   bool use_resume;
44   bool resume_from_current;
45   bool disable_epsv;
46   bool disable_eprt;
47   bool ftp_pret;
48   long proto;
49   bool proto_present;
50   long proto_redir;
51   bool proto_redir_present;
52   curl_off_t resume_from;
53   char *postfields;
54   curl_off_t postfieldsize;
55   char *referer;
56   double timeout;
57   double connecttimeout;
58   long maxredirs;
59   curl_off_t max_filesize;
60   char *headerfile;
61   char *ftpport;
62   char *iface;
63   int localport;
64   int localportrange;
65   unsigned short porttouse;
66   char *range;
67   long low_speed_limit;
68   long low_speed_time;
69   char *dns_servers;   /* dot notation: 1.1.1.1;2.2.2.2 */
70   char *dns_interface; /* interface name */
71   char *dns_ipv4_addr; /* dot notation */
72   char *dns_ipv6_addr; /* dot notation */
73   int showerror; /* -1 == unset, default => show errors
74                     0 => -s is used to NOT show errors
75                     1 => -S has been used to show errors */
76   char *userpwd;
77   char *login_options;
78   char *tls_username;
79   char *tls_password;
80   char *tls_authtype;
81   char *proxyuserpwd;
82   char *proxy;
83   int proxyver;             /* set to CURLPROXY_HTTP* define */
84   char *noproxy;
85   char *mail_from;
86   struct curl_slist *mail_rcpt;
87   char *mail_auth;
88   bool sasl_ir;             /* Enable/disable SASL initial response */
89   bool proxytunnel;
90   bool ftp_append;          /* APPE on ftp */
91   bool mute;                /* don't show messages, --silent given */
92   bool use_ascii;           /* select ascii or text transfer */
93   bool autoreferer;         /* automatically set referer */
94   bool failonerror;         /* fail on (HTTP) errors */
95   bool include_headers;     /* send headers to data output */
96   bool no_body;             /* don't get the body */
97   bool dirlistonly;         /* only get the FTP dir list */
98   bool followlocation;      /* follow http redirects */
99   bool unrestricted_auth;   /* Continue to send authentication (user+password)
100                                when following ocations, even when hostname
101                                changed */
102   bool netrc_opt;
103   bool netrc;
104   char *netrc_file;
105   bool noprogress;          /* don't show progress meter, --silent given */
106   bool isatty;              /* updated internally only if output is a tty */
107   struct getout *url_list;  /* point to the first node */
108   struct getout *url_last;  /* point to the last/current node */
109   struct getout *url_get;   /* point to the node to fill in URL */
110   struct getout *url_out;   /* point to the node to fill in outfile */
111   char *cipher_list;
112   char *cert;
113   char *cert_type;
114   char *cacert;
115   char *capath;
116   char *crlfile;
117   char *key;
118   char *key_type;
119   char *key_passwd;
120   char *pubkey;
121   char *hostpubmd5;
122   char *engine;
123   bool crlf;
124   char *customrequest;
125   char *krblevel;
126   char *trace_dump;         /* file to dump the network trace to, or NULL */
127   FILE *trace_stream;
128   bool trace_fopened;
129   trace tracetype;
130   bool tracetime;           /* include timestamp? */
131   long httpversion;
132   int progressmode;         /* CURL_PROGRESS_BAR or CURL_PROGRESS_STATS */
133   bool nobuffer;
134   bool readbusy;            /* set when reading input returns EAGAIN */
135   bool globoff;
136   bool use_httpget;
137   bool insecure_ok;         /* set TRUE to allow insecure SSL connects */
138   bool create_dirs;
139   bool ftp_create_dirs;
140   bool ftp_skip_ip;
141   bool proxynegotiate;
142   bool proxyntlm;
143   bool proxydigest;
144   bool proxybasic;
145   bool proxyanyauth;
146   char *writeout;           /* %-styled format string to output */
147   bool writeenv;            /* write results to environment, if available */
148   FILE *errors;             /* errors stream, defaults to stderr */
149   bool errors_fopened;      /* whether errors stream isn't stderr */
150   struct curl_slist *quote;
151   struct curl_slist *postquote;
152   struct curl_slist *prequote;
153   long ssl_version;
154   long ip_version;
155   curl_TimeCond timecond;
156   time_t condtime;
157   struct curl_slist *headers;
158   struct curl_httppost *httppost;
159   struct curl_httppost *last_post;
160   struct curl_slist *telnet_options;
161   struct curl_slist *resolve;
162   HttpReq httpreq;
163
164   /* for bandwidth limiting features: */
165   curl_off_t sendpersecond; /* send to peer */
166   curl_off_t recvpersecond; /* receive from peer */
167
168   bool ftp_ssl;
169   bool ftp_ssl_reqd;
170   bool ftp_ssl_control;
171   bool ftp_ssl_ccc;
172   int ftp_ssl_ccc_mode;
173
174   char *socksproxy;         /* set to server string */
175   int socksver;             /* set to CURLPROXY_SOCKS* define */
176   char *socks5_gssapi_service;  /* set service name for gssapi principal
177                                  * default rcmd */
178   int socks5_gssapi_nec ;   /* The NEC reference server does not protect
179                              * the encryption type exchange */
180
181   bool tcp_nodelay;
182   long req_retry;           /* number of retries */
183   long retry_delay;         /* delay between retries (in seconds) */
184   long retry_maxtime;       /* maximum time to keep retrying */
185
186   char *ftp_account;        /* for ACCT */
187   char *ftp_alternative_to_user;  /* send command if USER/PASS fails */
188   int ftp_filemethod;
189   long tftp_blksize;        /* TFTP BLKSIZE option */
190   bool ignorecl;            /* --ignore-content-length */
191   bool disable_sessionid;
192
193   char *libcurl;            /* output libcurl code to this file name */
194   bool raw;
195   bool post301;
196   bool post302;
197   bool post303;
198   bool nokeepalive;         /* for keepalive needs */
199   long alivetime;
200   bool content_disposition; /* use Content-disposition filename */
201
202   int default_node_flags;   /* default flags to search for each 'node', which
203                                is basically each given URL to transfer */
204
205   bool xattr;               /* store metadata in extended attributes */
206   long gssapi_delegation;
207   bool ssl_allow_beast;     /* allow this SSL vulnerability */
208
209   bool use_metalink;        /* process given URLs as metalink XML file */
210   metalinkfile *metalinkfile_list; /* point to the first node */
211   metalinkfile *metalinkfile_last; /* point to the last/current node */
212 #ifdef CURLDEBUG
213   bool test_event_based;
214 #endif
215   char *xoauth2_bearer;       /* XOAUTH2 bearer token */
216   bool nonpn;                 /* enable/disable TLS NPN extension */
217   bool noalpn;                /* enable/disable TLS ALPN extension */
218
219   struct Configurable* prev;
220   struct Configurable* next;  /* Always last in the struct */
221 };
222
223 void config_init(struct Configurable* config);
224 void config_free(struct Configurable* config);
225
226 #endif /* HEADER_CURL_TOOL_CFGABLE_H */