From b959f22eef3397c2383c4fefa8f430486b3fb905 Mon Sep 17 00:00:00 2001 From: Nick White Date: Sat, 3 May 2008 02:14:24 +0000 Subject: Corrected minor make error (from last commit - not sure if it went smoothly) Altered name of issuepath config variable to savepath, in config.ini as well as code Altered name of issue_xml config variable to toc_xml Removed unnecessary variable definitions from header (new commit) Corrected introduced Makefile error Added (currently unused) config options structure git-archimport-id: getht@sv.gnu.org/getht--mainline--0.1--patch-50 --- src/getht.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/getht.h') diff --git a/src/getht.h b/src/getht.h index 8c09c3f..6f7bc1d 100644 --- a/src/getht.h +++ b/src/getht.h @@ -26,3 +26,23 @@ #define ISS_XML_FILE "htde_toc.xml" #define STR_MAX 512 + +#include + +struct config { + char * proxytype; + char * proxyauth; + char proxy_addr[STR_MAX]; + long proxy_port; + char proxy_user[STR_MAX]; + char proxy_pass[STR_MAX]; + + char toc_xml[STR_MAX]; + char issue_uri[STR_MAX]; + + char save_path[STR_MAX]; + + int startup_check; + + CURL *curl_handle; +}; -- cgit v1.2.3