summaryrefslogtreecommitdiff
path: root/epgdconfig.h
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-03-05 16:39:28 +0100
committerhorchi <vdr@jwendel.de>2017-03-05 16:39:28 +0100
commite2a48d8701f91b8e24fbe9e99e91eb72a87bb749 (patch)
tree726f70554b4ca985a09ef6e30a7fdc8df089993c /epgdconfig.h
downloadvdr-epg-daemon-e2a48d8701f91b8e24fbe9e99e91eb72a87bb749.tar.gz
vdr-epg-daemon-e2a48d8701f91b8e24fbe9e99e91eb72a87bb749.tar.bz2
git init1.1.103
Diffstat (limited to 'epgdconfig.h')
-rw-r--r--epgdconfig.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/epgdconfig.h b/epgdconfig.h
new file mode 100644
index 0000000..0335ce7
--- /dev/null
+++ b/epgdconfig.h
@@ -0,0 +1,63 @@
+/*
+ * epgdconfig.h:
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ */
+
+#ifndef __EPGD_CONFIG_H
+#define __EPGD_CONFIG_H
+
+#include "lib/config.h"
+
+//***************************************************************************
+// Config
+//***************************************************************************
+
+struct cEpgdConfig : public cEpgConfig
+{
+ public:
+
+ cEpgdConfig();
+
+ int checkInitial;
+ int updatetime;
+ int days;
+ int upddays;
+ int storeXmlToFs;
+
+ int maximagesperevent;
+ int epgImageSize;
+
+ int seriesEnabled;
+ char seriesUrl[500+TB];
+ char seriesMail[500+TB];
+ int seriesPort;
+ int storeSeriesToFs;
+
+ char cachePath[256+TB];
+ char httpPath[256+TB];
+ char pluginPath[256+TB];
+ char epgView[100+TB];
+ char epgViewWeb[100+TB];
+ char theTvDBView[100+TB];
+ int updateThreshold;
+ int maintanance;
+ int httpPort;
+ char httpDevice[20+TB];
+ int httpUseTls;
+ char httpUser[100+TB];
+ char httpPass[100+TB];
+ char proxy[256+TB];
+ char proxyuser[100+TB];
+ char proxypwd[100+TB];
+
+ int scrapEpg;
+ int scrapRecordings;
+};
+
+extern cEpgdConfig EpgdConfig;
+
+//***************************************************************************
+
+#endif // __EPGD_CONFIG_H