X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2Foptions.h;h=8c2ab176da5622351cf1259f4323d68241b977dc;hb=1396b300550d9b5ca3b4b3e4e3776a1456024f73;hp=b43bf7b360ef400202bd90b13ad5d24943d5e306;hpb=1dc66a6cf6d2a67b98e6378c55aa598733fbf116;p=wget diff --git a/src/options.h b/src/options.h index b43bf7b3..8c2ab176 100644 --- a/src/options.h +++ b/src/options.h @@ -64,6 +64,9 @@ 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 @@ -95,7 +98,8 @@ struct options long timeout; /* The value of read timeout in seconds. */ #endif - long wait; /* The wait period between retries. */ + long wait; /* The wait period between retrievals. */ + long waitretry; /* The wait period between retries. - HEH */ int use_robots; /* Do we heed robots.txt? */ long quota; /* Maximum number of bytes to @@ -137,6 +141,13 @@ 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. */ + + struct sockaddr_in *bind_address; /* What local IP address to bind to. */ }; #ifndef OPTIONS_DEFINED_HERE