getht-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Getht-commit] arch commit: getht--mainline--0.1--patch-50


From: Nick
Subject: [Getht-commit] arch commit: getht--mainline--0.1--patch-50
Date: Sat, 3 May 2008 03:16:39 +0100
User-agent: Mutt/1.5.16 (2007-06-09)

Revision: getht--mainline--0.1--patch-50
Archive: address@hidden
Creator: Nick White <address@hidden>
Date: Sat May  3 03:14:24 BST 2008
Standard-date: 2008-05-03 02:14:24 GMT
Modified-files: src/Makefile.am src/getht.h
New-patches: address@hidden/getht--mainline--0.1--patch-50
Summary: Corrected minor make error
Keywords: 

(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
M  src/getht.h
M  src/Makefile.am

* modified files

--- orig/src/Makefile.am
+++ mod/src/Makefile.am
@@ -4,4 +4,4 @@
 
 getht_SOURCES = config.c cli.c download.c getht.c issuemem.c   \
                tocxml.c xml.c  \
-               config.h getht.h issue.h version.h
+               getht.h issue.h version.h


--- orig/src/getht.h
+++ mod/src/getht.h
@@ -26,3 +26,23 @@
 #define ISS_XML_FILE   "htde_toc.xml"
 
 #define STR_MAX                512
+
+#include <curl/curl.h>
+
+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;
+};







reply via email to

[Prev in Thread] Current Thread [Next in Thread]