More work on settings system.. still not functional.
[pazpar2-moved-to-github.git] / src / config.h
index 6c7cab4..5c2c8b1 100644 (file)
@@ -67,6 +67,8 @@ struct conf_server
     char *proxy_host;
     int proxy_port;
     char *myurl;
+    char *zproxy_host;
+    int zproxy_port;
     struct conf_service *service;
     struct conf_server *next;
 };
@@ -109,10 +111,19 @@ struct conf_retrievalprofile
     struct conf_retrievalprofile *next;
 };
 
+struct conf_targetprofiles
+{
+    enum {
+        Targetprofiles_local
+    } type;
+    char *src;
+};
+
 struct conf_config
 {
     struct conf_server *servers;
     struct conf_queryprofile *queryprofiles;
+    struct conf_targetprofiles *targetprofiles;
     struct conf_retrievalprofile *retrievalprofiles;
 };