Remove some bogus error checking and return void instead of int.
[oweals/opkg-lede.git] / libopkg / opkg_conf.h
index 4bd50e59d38c3fc6fcecf82d410ce69866729d23..b19e5ddca57da45f7661f6397be2138fddbb2550 100644 (file)
@@ -75,6 +75,25 @@ struct opkg_conf
      int noaction;
      char *cache;
 
+#ifdef HAVE_SSLCURL
+     /* some options could be used by
+      * wget if curl support isn't builtin
+      * If someone want to try...
+      */
+     char *ssl_engine;
+     char *ssl_cert;
+     char *ssl_cert_type;
+     char *ssl_key;
+     char *ssl_key_type;
+     char *ssl_key_passwd;
+     char *ssl_ca_file;
+     char *ssl_ca_path;
+     int ssl_dont_verify_peer;
+#endif
+#ifdef HAVE_PATHFINDER
+     int check_x509_path;
+#endif
+
      /* proxy options */
      char *http_proxy;
      char *ftp_proxy;
@@ -111,6 +130,6 @@ int opkg_conf_write_status_files(opkg_conf_t *conf);
 char *root_filename_alloc(opkg_conf_t *conf, char *filename);
 
 
-int opkg_init_options_array(const opkg_conf_t *conf, opkg_option_t **options);
+void opkg_init_options_array(const opkg_conf_t *conf, opkg_option_t **options);
 
 #endif