]> sjero.net Git - wget/blobdiff - src/options.h
[svn] Improvements/fixes to HTTP Content-Disposition header support.
[wget] / src / options.h
index 8c1105efb6ccd48c974a599edccbada45bf82505..f1b9cd75439f016538fd3724401c52df1859fef7 100644 (file)
@@ -35,9 +35,6 @@ struct options
   int ntry;                    /* Number of tries per URL */
   bool retry_connrefused;      /* Treat CONNREFUSED as non-fatal. */
   bool background;             /* Whether we should work in background. */
-  bool kill_longer;            /* Do we reject messages with *more*
-                                  data than specified in
-                                  content-length? */
   bool ignore_length;          /* Do we heed content-length at all?  */
   bool recursive;              /* Are we recursive? */
   bool spanhost;                       /* Do we span across hosts in
@@ -66,6 +63,8 @@ struct options
   char **excludes;             /* List of excluded FTP directories. */
   char **includes;             /* List of FTP directories to
                                   follow. */
+  bool ignore_case;            /* Whether to ignore case when
+                                  matching dirs and files */
 
   char **domains;              /* See host.c */
   char **exclude_domains;
@@ -221,6 +220,8 @@ struct options
     prefer_none
   } prefer_family;             /* preferred address family when more
                                   than one type is available */
+  
+  bool content_disposition;    /* Honor HTTP Content-Disposition header. */
 };
 
 extern struct options opt;