X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Foptions.h;h=a07c641e96b57b72b9b4fe35e968b80ac82ee593;hp=1036c6f2cd28fba6358c75e4cc15dc3e785d9a90;hb=cb4003403509b46d2f6ef6936baf969906ff1430;hpb=5d8cfbd9044f91d277027d8c1aab3c47e118b407 diff --git a/src/options.h b/src/options.h index 1036c6f2..a07c641e 100644 --- a/src/options.h +++ b/src/options.h @@ -1,24 +1,25 @@ /* struct options. Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. -This file is part of Wget. +This file is part of GNU Wget. -This program is free software; you can redistribute it and/or modify +GNU Wget is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. -This program is distributed in the hope that it will be useful, +GNU Wget is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software +along with Wget; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Needed for FDP. */ #include +#include "host.h" struct options { @@ -36,9 +37,6 @@ struct options int relative_only; /* Follow only relative links. */ int no_parent; /* Restrict access to the parent directory. */ - int simple_check; /* Should we use simple checking - (strcmp) or do we create a host - hash and call gethostbyname? */ int reclevel; /* Maximum level of recursion */ int dirstruct; /* Do we build the directory structure as we go along? */ @@ -49,7 +47,6 @@ struct options data. */ char *dir_prefix; /* The top of directory tree */ char *lfilename; /* Log filename */ - int no_flush; /* If non-zero, inhibit flushing log. */ char *input_filename; /* Input filename */ int force_html; /* Is the input file an HTML file? */ @@ -64,12 +61,18 @@ struct options char **domains; /* See host.c */ char **exclude_domains; + char **follow_tags; /* List of HTML tags to recursively follow. */ + char **ignore_tags; /* List of HTML tags to ignore if recursing. */ + int follow_ftp; /* Are FTP URL-s followed in recursive retrieving? */ int retr_symlinks; /* Whether we retrieve symlinks in FTP. */ char *output_document; /* The output file to which the documents will be printed. */ + int od_known_regular; /* whether output_document is a + regular file we can manipulate, + i.e. not `-' or a device file. */ FILE *dfp; /* The file pointer to the output document. */ @@ -83,25 +86,31 @@ struct options char *http_user; /* HTTP user. */ char *http_passwd; /* HTTP password. */ char *user_header; /* User-defined header(s). */ + int http_keep_alive; /* whether we use keep-alive */ int use_proxy; /* Do we use proxy? */ - int proxy_cache; /* Do we load from proxy cache? */ - char *http_proxy, *ftp_proxy; + int allow_cache; /* Do we allow server-side caching? */ + char *http_proxy, *ftp_proxy, *https_proxy; char **no_proxy; char *base_href; + char *progress_type; /* progress indicator type. */ char *proxy_user; /*oli*/ char *proxy_passwd; #ifdef HAVE_SELECT long timeout; /* The value of read timeout in seconds. */ #endif + int random_wait; /* vary from 0 .. wait secs by random()? */ long wait; /* The wait period between retrievals. */ long waitretry; /* The wait period between retries. - HEH */ int use_robots; /* Do we heed robots.txt? */ + long limit_rate; /* Limit the download rate to this + many bps. */ long quota; /* Maximum number of bytes to retrieve. */ - long downloaded; /* How much we downloaded already. */ + VERY_LONG_TYPE downloaded; /* How much we downloaded already. */ + int downloaded_overflow; /* Whether the above overflowed. */ int numurls; /* Number of successfully downloaded URLs */ @@ -131,6 +140,7 @@ struct options int htmlify; /* Do we HTML-ify the OS-dependent listings? */ + char *dot_style; long dot_bytes; /* How many bytes in a printing dot. */ int dots_in_line; /* How many dots in one line. */ @@ -138,6 +148,23 @@ struct options int delete_after; /* Whether the files will be deleted after download. */ + + int html_extension; /* Use ".html" extension on all text/html? */ + + int page_requisites; /* Whether we need to download all files + necessary to display a page properly. */ + wget_sockaddr *bind_address; /* What local IP address to bind to. */ +#ifdef HAVE_SSL + char *sslcertfile; /* external client cert to use. */ + char *sslcertkey; /* the keyfile for this certificate + (if not internal) included in the + certfile. */ + char *sslegdsock; /* optional socket of the egd daemon */ +#endif /* HAVE_SSL */ + + int cookies; + char *cookies_input; + char *cookies_output; }; #ifndef OPTIONS_DEFINED_HERE