]> sjero.net Git - wget/blobdiff - src/options.h
[svn] Added support for --restrict-file-names=lowercase and --restrict-file-names...
[wget] / src / options.h
index c9399d3cfd9d3e37b4a61bd310f94ff4243937f0..a7e36273c2e9f3f8af1206b7b3229b69be8e02e3 100644 (file)
@@ -203,6 +203,11 @@ struct options
   bool restrict_files_ctrl;    /* non-zero if control chars in URLs
                                   are restricted from appearing in
                                   generated file names. */
+  enum {
+    restrict_no_case_restriction,
+    restrict_lowercase,
+    restrict_uppercase
+  } restrict_files_case;       /* file name case restriction. */
 
   bool strict_comments;                /* whether strict SGML comments are
                                   enforced.  */
@@ -220,6 +225,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;