]> sjero.net Git - wget/blobdiff - src/options.h
[svn] Send the no-cache directive when required regardless of whether we're
[wget] / src / options.h
index 7c1fac51a46f0d58d2c4a4d7cbe8291af6512fb3..42bfd7c650f007f451a51c021547b1de54bd7055 100644 (file)
@@ -92,7 +92,7 @@ struct options
   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? */
+  int allow_cache;             /* Do we allow server-side caching? */
   char *http_proxy, *ftp_proxy, *https_proxy;
   char **no_proxy;
   char *base_href;
@@ -153,6 +153,17 @@ struct options
                                   necessary to display a page properly. */
 
   struct sockaddr_in *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. */
+#endif /* HAVE_SSL */
+
+  int   cookies;
+  char *cookies_input;
+  char *cookies_output;
 };
 
 #ifndef OPTIONS_DEFINED_HERE