]> sjero.net Git - wget/blob - src/options.h
[svn] Enabled separation of different timeout values.
[wget] / src / options.h
1 /* struct options.
2    Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 /* Needed for FDP.  */
31 #include <stdio.h>
32
33 struct options
34 {
35   int verbose;                  /* Are we verbose? */
36   int quiet;                    /* Are we quiet? */
37   int ntry;                     /* Number of tries per URL */
38   int retry_connrefused;        /* Treat CONNREFUSED as non-fatal. */
39   int background;               /* Whether we should work in background. */
40   int kill_longer;              /* Do we reject messages with *more*
41                                    data than specified in
42                                    content-length? */
43   int ignore_length;            /* Do we heed content-length at all?  */
44   int recursive;                /* Are we recursive? */
45   int spanhost;                 /* Do we span across hosts in
46                                    recursion? */
47   int relative_only;            /* Follow only relative links. */
48   int no_parent;                /* Restrict access to the parent
49                                    directory.  */
50   int reclevel;                 /* Maximum level of recursion */
51   int dirstruct;                /* Do we build the directory structure
52                                   as we go along? */
53   int no_dirstruct;             /* Do we hate dirstruct? */
54   int cut_dirs;                 /* Number of directory components to cut. */
55   int add_hostdir;              /* Do we add hostname directory? */
56   int noclobber;                /* Disables clobbering of existing
57                                    data. */
58   char *dir_prefix;             /* The top of directory tree */
59   char *lfilename;              /* Log filename */
60   char *input_filename;         /* Input filename */
61   int force_html;               /* Is the input file an HTML file? */
62
63   int spider;                   /* Is Wget in spider mode? */
64
65   char **accepts;               /* List of patterns to accept. */
66   char **rejects;               /* List of patterns to reject. */
67   char **excludes;              /* List of excluded FTP directories. */
68   char **includes;              /* List of FTP directories to
69                                    follow. */
70
71   char **domains;               /* See host.c */
72   char **exclude_domains;
73   int dns_cache;                /* whether we cache DNS lookups. */
74
75   char **follow_tags;           /* List of HTML tags to recursively follow. */
76   char **ignore_tags;           /* List of HTML tags to ignore if recursing. */
77
78   int follow_ftp;               /* Are FTP URL-s followed in recursive
79                                    retrieving? */
80   int retr_symlinks;            /* Whether we retrieve symlinks in
81                                    FTP. */
82   char *output_document;        /* The output file to which the
83                                    documents will be printed.  */
84   int od_known_regular;         /* whether output_document is a
85                                    regular file we can manipulate,
86                                    i.e. not `-' or a device file. */
87   FILE *dfp;                    /* The file pointer to the output
88                                    document. */
89
90   int always_rest;              /* Always use REST. */
91   char *ftp_acc;                /* FTP username */
92   char *ftp_pass;               /* FTP password */
93   int netrc;                    /* Whether to read .netrc. */
94   int ftp_glob;                 /* FTP globbing */
95   int ftp_pasv;                 /* Passive FTP. */
96
97   char *http_user;              /* HTTP user. */
98   char *http_passwd;            /* HTTP password. */
99   char *user_header;            /* User-defined header(s). */
100   int http_keep_alive;          /* whether we use keep-alive */
101
102   int use_proxy;                /* Do we use proxy? */
103   int allow_cache;              /* Do we allow server-side caching? */
104   char *http_proxy, *ftp_proxy, *https_proxy;
105   char **no_proxy;
106   char *base_href;
107   char *progress_type;          /* progress indicator type. */
108   char *proxy_user; /*oli*/
109   char *proxy_passwd;
110
111   double read_timeout;          /* The read/write timeout. */
112   double dns_timeout;           /* The DNS timeout. */
113   double connect_timeout;       /* The connect timeout. */
114
115   int random_wait;              /* vary from 0 .. wait secs by random()? */
116   double wait;                  /* The wait period between retrievals. */
117   double waitretry;             /* The wait period between retries. - HEH */
118   int use_robots;               /* Do we heed robots.txt? */
119
120   long limit_rate;              /* Limit the download rate to this
121                                    many bps. */
122   long quota;                   /* Maximum number of bytes to
123                                    retrieve. */
124   VERY_LONG_TYPE downloaded;    /* How much we downloaded already. */
125   int downloaded_overflow;      /* Whether the above overflowed. */
126   int numurls;                  /* Number of successfully downloaded
127                                    URLs */
128
129   int server_response;          /* Do we print server response? */
130   int save_headers;             /* Do we save headers together with
131                                    file? */
132
133 #ifdef DEBUG
134   int debug;                    /* Debugging on/off */
135 #endif /* DEBUG */
136
137   int timestamping;             /* Whether to use time-stamping. */
138
139   int backup_converted;         /* Do we save pre-converted files as *.orig? */
140   int backups;                  /* Are numeric backups made? */
141
142   char *useragent;              /* Naughty User-Agent, which can be
143                                    set to something other than
144                                    Wget. */
145   char *referer;                /* Naughty Referer, which can be
146                                    set to something other than
147                                    NULL. */
148   int convert_links;            /* Will the links be converted
149                                    locally? */
150   int remove_listing;           /* Do we remove .listing files
151                                    generated by FTP? */
152   int htmlify;                  /* Do we HTML-ify the OS-dependent
153                                    listings? */
154
155   char *dot_style;
156   long dot_bytes;               /* How many bytes in a printing
157                                    dot. */
158   int dots_in_line;             /* How many dots in one line. */
159   int dot_spacing;              /* How many dots between spacings. */
160
161   int delete_after;             /* Whether the files will be deleted
162                                    after download. */
163
164   int html_extension;           /* Use ".html" extension on all text/html? */
165
166   int page_requisites;          /* Whether we need to download all files
167                                    necessary to display a page properly. */
168   char *bind_address;           /* What local IP address to bind to. */
169 #ifdef HAVE_SSL
170   char *sslcadir;               /* CA directory (hash files) */
171   char *sslcafile;              /* CA File to use */
172   char *sslcertfile;            /* external client cert to use. */
173   char *sslcertkey;             /* the keyfile for this certificate
174                                    (if not internal) included in the
175                                    certfile. */
176   int   sslcerttype;            /* 0 = PEM / 1=ASN1 (DER) */
177   int   sslcheckcert;           /* 0 do not check / 1 check server cert */
178   char *sslegdsock;             /* optional socket of the egd daemon */
179   int   sslprotocol;            /* 0 = auto / 1 = v2 / 2 = v3 / 3 = TLSv1 */
180 #endif /* HAVE_SSL */
181
182   int   cookies;
183   char *cookies_input;
184   char *cookies_output;
185
186   char *post_data;              /* POST query string */
187   char *post_file_name;         /* File to post */
188
189   enum {
190     restrict_unix,
191     restrict_windows
192   } restrict_files_os;          /* file name restriction ruleset. */
193   int restrict_files_ctrl;      /* non-zero if control chars in URLs
194                                    are restricted from appearing in
195                                    generated file names. */
196
197   int strict_comments;          /* whether strict SGML comments are
198                                    enforced.  */
199 };
200
201 extern struct options opt;