blob: 77166b816e651445854081a0e68edebbd84853df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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];
char scrapMovieDbApiKey[100+TB];
int scrapEpg;
int scrapRecordings;
};
extern cEpgdConfig EpgdConfig;
//***************************************************************************
#endif // __EPGD_CONFIG_H
|