source: trunk/essentials/net-misc/wget/src/options.h

Last change on this file was 3440, checked in by bird, 18 years ago

wget 1.10.2

File size: 7.9 KB
Line 
1/* struct options.
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3
4This file is part of GNU Wget.
5
6GNU Wget is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11GNU Wget is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with Wget; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20In addition, as a special exception, the Free Software Foundation
21gives permission to link the code of its release of Wget with the
22OpenSSL project's "OpenSSL" library (or with modified versions of it
23that use the same license as the "OpenSSL" library), and distribute
24the linked executables. You must obey the GNU General Public License
25in all respects for all of the code used other than "OpenSSL". If you
26modify this file, you may extend this exception to your version of the
27file, but you are not obligated to do so. If you do not wish to do
28so, delete this exception statement from your version. */
29
30struct options
31{
32 int verbose; /* Are we verbose? */
33 int quiet; /* Are we quiet? */
34 int ntry; /* Number of tries per URL */
35 int retry_connrefused; /* Treat CONNREFUSED as non-fatal. */
36 int background; /* Whether we should work in background. */
37 int ignore_length; /* Do we heed content-length at all? */
38 int recursive; /* Are we recursive? */
39 int spanhost; /* Do we span across hosts in
40 recursion? */
41 int relative_only; /* Follow only relative links. */
42 int no_parent; /* Restrict access to the parent
43 directory. */
44 int reclevel; /* Maximum level of recursion */
45 int dirstruct; /* Do we build the directory structure
46 as we go along? */
47 int no_dirstruct; /* Do we hate dirstruct? */
48 int cut_dirs; /* Number of directory components to cut. */
49 int add_hostdir; /* Do we add hostname directory? */
50 int protocol_directories; /* Whether to prepend "http"/"ftp" to dirs. */
51 int noclobber; /* Disables clobbering of existing
52 data. */
53 char *dir_prefix; /* The top of directory tree */
54 char *lfilename; /* Log filename */
55 char *input_filename; /* Input filename */
56 int force_html; /* Is the input file an HTML file? */
57
58 int spider; /* Is Wget in spider mode? */
59
60 char **accepts; /* List of patterns to accept. */
61 char **rejects; /* List of patterns to reject. */
62 char **excludes; /* List of excluded FTP directories. */
63 char **includes; /* List of FTP directories to
64 follow. */
65
66 char **domains; /* See host.c */
67 char **exclude_domains;
68 int dns_cache; /* whether we cache DNS lookups. */
69
70 char **follow_tags; /* List of HTML tags to recursively follow. */
71 char **ignore_tags; /* List of HTML tags to ignore if recursing. */
72
73 int follow_ftp; /* Are FTP URL-s followed in recursive
74 retrieving? */
75 int retr_symlinks; /* Whether we retrieve symlinks in
76 FTP. */
77 char *output_document; /* The output file to which the
78 documents will be printed. */
79
80 char *user; /* Generic username */
81 char *passwd; /* Generic password */
82
83 int always_rest; /* Always use REST. */
84 char *ftp_user; /* FTP username */
85 char *ftp_passwd; /* FTP password */
86 int netrc; /* Whether to read .netrc. */
87 int ftp_glob; /* FTP globbing */
88 int ftp_pasv; /* Passive FTP. */
89
90 char *http_user; /* HTTP username. */
91 char *http_passwd; /* HTTP password. */
92 char **user_headers; /* User-defined header(s). */
93 int http_keep_alive; /* whether we use keep-alive */
94
95 int use_proxy; /* Do we use proxy? */
96 int allow_cache; /* Do we allow server-side caching? */
97 char *http_proxy, *ftp_proxy, *https_proxy;
98 char **no_proxy;
99 char *base_href;
100 char *progress_type; /* progress indicator type. */
101 char *proxy_user; /*oli*/
102 char *proxy_passwd;
103
104 double read_timeout; /* The read/write timeout. */
105 double dns_timeout; /* The DNS timeout. */
106 double connect_timeout; /* The connect timeout. */
107
108 int random_wait; /* vary from 0 .. wait secs by random()? */
109 double wait; /* The wait period between retrievals. */
110 double waitretry; /* The wait period between retries. - HEH */
111 int use_robots; /* Do we heed robots.txt? */
112
113 wgint limit_rate; /* Limit the download rate to this
114 many bps. */
115 SUM_SIZE_INT quota; /* Maximum file size to download and
116 store. */
117 int numurls; /* Number of successfully downloaded
118 URLs */
119
120 int server_response; /* Do we print server response? */
121 int save_headers; /* Do we save headers together with
122 file? */
123
124#ifdef ENABLE_DEBUG
125 int debug; /* Debugging on/off */
126#endif
127
128 int timestamping; /* Whether to use time-stamping. */
129
130 int backup_converted; /* Do we save pre-converted files as *.orig? */
131 int backups; /* Are numeric backups made? */
132
133 char *useragent; /* Naughty User-Agent, which can be
134 set to something other than
135 Wget. */
136 char *referer; /* Naughty Referer, which can be
137 set to something other than
138 NULL. */
139 int convert_links; /* Will the links be converted
140 locally? */
141 int remove_listing; /* Do we remove .listing files
142 generated by FTP? */
143 int htmlify; /* Do we HTML-ify the OS-dependent
144 listings? */
145
146 char *dot_style;
147 wgint dot_bytes; /* How many bytes in a printing
148 dot. */
149 int dots_in_line; /* How many dots in one line. */
150 int dot_spacing; /* How many dots between spacings. */
151
152 int delete_after; /* Whether the files will be deleted
153 after download. */
154
155 int html_extension; /* Use ".html" extension on all text/html? */
156
157 int page_requisites; /* Whether we need to download all files
158 necessary to display a page properly. */
159 char *bind_address; /* What local IP address to bind to. */
160
161#ifdef HAVE_SSL
162 enum {
163 secure_protocol_auto,
164 secure_protocol_sslv2,
165 secure_protocol_sslv3,
166 secure_protocol_tlsv1
167 } secure_protocol; /* type of secure protocol to use. */
168 int check_cert; /* whether to validate the server's cert */
169 char *cert_file; /* external client certificate to use. */
170 char *private_key; /* private key file (if not internal). */
171 enum keyfile_type {
172 keyfile_pem,
173 keyfile_asn1
174 } cert_type; /* type of client certificate file */
175 enum keyfile_type
176 private_key_type; /* type of private key file */
177
178 char *ca_directory; /* CA directory (hash files) */
179 char *ca_cert; /* CA certificate file to use */
180
181
182 char *random_file; /* file with random data to seed the PRNG */
183 char *egd_file; /* file name of the egd daemon socket */
184#endif /* HAVE_SSL */
185
186 int cookies; /* whether cookies are used. */
187 char *cookies_input; /* file we're loading the cookies from. */
188 char *cookies_output; /* file we're saving the cookies to. */
189 int keep_session_cookies; /* whether session cookies should be
190 saved and loaded. */
191
192 char *post_data; /* POST query string */
193 char *post_file_name; /* File to post */
194
195 enum {
196 restrict_unix,
197 restrict_windows
198 } restrict_files_os; /* file name restriction ruleset. */
199 int restrict_files_ctrl; /* non-zero if control chars in URLs
200 are restricted from appearing in
201 generated file names. */
202
203 int strict_comments; /* whether strict SGML comments are
204 enforced. */
205
206 int preserve_perm; /* whether remote permissions are used
207 or that what is set by umask. */
208
209#ifdef ENABLE_IPV6
210 int ipv4_only; /* IPv4 connections have been requested. */
211 int ipv6_only; /* IPv4 connections have been requested. */
212#endif
213 enum {
214 prefer_ipv4,
215 prefer_ipv6,
216 prefer_none
217 } prefer_family; /* preferred address family when more
218 than one type is available */
219};
220
221extern struct options opt;
Note: See TracBrowser for help on using the repository browser.