blob: fb5d9c50e15efef2fc019bf7fca5dd19cae5f9fd (
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
|
#ifndef VDR_LIVE_TNTFEATURES_H
#define VDR_LIVE_TNTFEATURES_H
// This header mapps tntversion strings, whose 'structure' changes over time,
// to features of tntnet used in the live plugin. This avoids scattering the
// version check for TNTVERSION over several source files in live. Thus when
// an other change in the structure of the version string was needed then only
// this file needs to be adapted.
// SSL-Support works from tntnet version 1.6.1 onwards.
#define TNT_SSL_SUPPORT (TNTVERSION >= 16100)
// Configuration of tntnet from within the source code and not with a
// dedicated config file.
#define TNT_CONFIG_INTERNAL (TNTVERSION >= 16060)
// Query params are now in tntnet and not in cxxtools
#define TNT_HAS_QUERYPARAMS (TNTVERSION >= 16060)
// One can request the host part of the request url
#define TNT_HAS_GETHOST (TNTVERSION >= 16060)
// new version of TNTNET allow the request watchdog to be silenced.
#define TNT_WATCHDOG_SILENCE (TNTVERSION >= 16900)
#endif // VDR_LIVE_TNTFEATURES_H
|