tool_getparam: Added initial support for --next/-:
[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 OperationConfig {
31   CURL *easy;               /* A copy of the handle from GlobalConfig */
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   char *userpwd;
74   char *login_options;
75   char *tls_username;
76   char *tls_password;
77   char *tls_authtype;
78   char *proxyuserpwd;
79   char *proxy;
80   int proxyver;             /* set to CURLPROXY_HTTP* define */
81   char *noproxy;
82   char *mail_from;
83   struct curl_slist *mail_rcpt;
84   char *mail_auth;
85   bool sasl_ir;             /* Enable/disable SASL initial response */
86   bool proxytunnel;
87   bool ftp_append;          /* APPE on ftp */
88   bool mute;                /* don't show messages, --silent given */
89   bool use_ascii;           /* select ascii or text transfer */
90   bool autoreferer;         /* automatically set referer */
91   bool failonerror;         /* fail on (HTTP) errors */
92   bool include_headers;     /* send headers to data output */
93   bool no_body;             /* don't get the body */
94   bool dirlistonly;         /* only get the FTP dir list */
95   bool followlocation;      /* follow http redirects */
96   bool unrestricted_auth;   /* Continue to send authentication (user+password)
97                                when following ocations, even when hostname
98                                changed */
99   bool netrc_opt;
100   bool netrc;
101   char *netrc_file;
102   bool noprogress;          /* don't show progress meter, --silent given */
103   bool isatty;              /* updated internally only if output is a tty */
104   struct getout *url_list;  /* point to the first node */
105   struct getout *url_last;  /* point to the last/current node */
106   struct getout *url_get;   /* point to the node to fill in URL */
107   struct getout *url_out;   /* point to the node to fill in outfile */
108   char *cipher_list;
109   char *cert;
110   char *cert_type;
111   char *cacert;
112   char *capath;
113   char *crlfile;
114   char *key;
115   char *key_type;
116   char *key_passwd;
117   char *pubkey;
118   char *hostpubmd5;
119   char *engine;
120   bool crlf;
121   char *customrequest;
122   char *krblevel;
123   char *trace_dump;         /* file to dump the network trace to, or NULL */
124   FILE *trace_stream;
125   bool trace_fopened;
126   trace tracetype;
127   bool tracetime;           /* include timestamp? */
128   long httpversion;
129   int progressmode;         /* CURL_PROGRESS_BAR or CURL_PROGRESS_STATS */
130   bool nobuffer;
131   bool readbusy;            /* set when reading input returns EAGAIN */
132   bool globoff;
133   bool use_httpget;
134   bool insecure_ok;         /* set TRUE to allow insecure SSL connects */
135   bool create_dirs;
136   bool ftp_create_dirs;
137   bool ftp_skip_ip;
138   bool proxynegotiate;
139   bool proxyntlm;
140   bool proxydigest;
141   bool proxybasic;
142   bool proxyanyauth;
143   char *writeout;           /* %-styled format string to output */
144   bool writeenv;            /* write results to environment, if available */
145   FILE *errors;             /* errors stream, defaults to stderr */
146   bool errors_fopened;      /* whether errors stream isn't stderr */
147   struct curl_slist *quote;
148   struct curl_slist *postquote;
149   struct curl_slist *prequote;
150   long ssl_version;
151   long ip_version;
152   curl_TimeCond timecond;
153   time_t condtime;
154   struct curl_slist *headers;
155   struct curl_httppost *httppost;
156   struct curl_httppost *last_post;
157   struct curl_slist *telnet_options;
158   struct curl_slist *resolve;
159   HttpReq httpreq;
160
161   /* for bandwidth limiting features: */
162   curl_off_t sendpersecond; /* send to peer */
163   curl_off_t recvpersecond; /* receive from peer */
164
165   bool ftp_ssl;
166   bool ftp_ssl_reqd;
167   bool ftp_ssl_control;
168   bool ftp_ssl_ccc;
169   int ftp_ssl_ccc_mode;
170
171   char *socksproxy;         /* set to server string */
172   int socksver;             /* set to CURLPROXY_SOCKS* define */
173   char *socks5_gssapi_service;  /* set service name for gssapi principal
174                                  * default rcmd */
175   int socks5_gssapi_nec ;   /* The NEC reference server does not protect
176                              * the encryption type exchange */
177
178   bool tcp_nodelay;
179   long req_retry;           /* number of retries */
180   long retry_delay;         /* delay between retries (in seconds) */
181   long retry_maxtime;       /* maximum time to keep retrying */
182
183   char *ftp_account;        /* for ACCT */
184   char *ftp_alternative_to_user;  /* send command if USER/PASS fails */
185   int ftp_filemethod;
186   long tftp_blksize;        /* TFTP BLKSIZE option */
187   bool ignorecl;            /* --ignore-content-length */
188   bool disable_sessionid;
189
190   char *libcurl;            /* output libcurl code to this file name */
191   bool raw;
192   bool post301;
193   bool post302;
194   bool post303;
195   bool nokeepalive;         /* for keepalive needs */
196   long alivetime;
197   bool content_disposition; /* use Content-disposition filename */
198
199   int default_node_flags;   /* default flags to search for each 'node', which
200                                is basically each given URL to transfer */
201
202   bool xattr;               /* store metadata in extended attributes */
203   long gssapi_delegation;
204   bool ssl_allow_beast;     /* allow this SSL vulnerability */
205
206   bool use_metalink;        /* process given URLs as metalink XML file */
207   metalinkfile *metalinkfile_list; /* point to the first node */
208   metalinkfile *metalinkfile_last; /* point to the last/current node */
209 #ifdef CURLDEBUG
210   bool test_event_based;
211 #endif
212   char *xoauth2_bearer;       /* XOAUTH2 bearer token */
213   bool nonpn;                 /* enable/disable TLS NPN extension */
214   bool noalpn;                /* enable/disable TLS ALPN extension */
215
216   struct OperationConfig* prev;
217   struct OperationConfig* next; /* Always last in the struct */
218 };
219
220 struct GlobalConfig {
221   CURL *easy;                     /* Once we have one, we keep it here */
222   int showerror;                  /* -1 == unset, default => show errors
223                                       0 => -s is used to NOT show errors
224                                       1 => -S has been used to show errors */
225
226   struct OperationConfig *first;
227   struct OperationConfig *current;
228   struct OperationConfig *last;   /* Always last in the struct */
229 };
230
231 void config_init(struct OperationConfig* config);
232 void config_free(struct OperationConfig* config);
233
234 #endif /* HEADER_CURL_TOOL_CFGABLE_H */