diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2013-05-03 01:37:41 +0200 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2013-05-03 01:37:41 +0200 |
commit | 042724e30d5690ab67a6c04aea48a16b9a3b085b (patch) | |
tree | 90e147eeab89a71cc832ac630ea5d69643779944 /tntfeatures.h | |
parent | 68b0abf7427002a5be71f4ffd92fa91410af37a2 (diff) | |
download | vdr-plugin-live-042724e30d5690ab67a6c04aea48a16b9a3b085b.tar.gz vdr-plugin-live-042724e30d5690ab67a6c04aea48a16b9a3b085b.tar.bz2 |
Make LIVE compile and work with Tntnet and cxxtools version 2.2.
Thanks to Tommi Mäkitalo for his help on resolving the issues.
This problem was reported by Martin Gansser and by the user 'varas' in
the bugtracker as bug #1351. This commit fixes that bug.
Diffstat (limited to 'tntfeatures.h')
-rw-r--r-- | tntfeatures.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tntfeatures.h b/tntfeatures.h index 6de1f88..76d3757 100644 --- a/tntfeatures.h +++ b/tntfeatures.h @@ -17,6 +17,9 @@ // Query params are now in tntnet and not in cxxtools #define TNT_HAS_QUERYPARAMS (TNTVERSION >= 16060) +// Query params without boolean parameter +#define TNT_QUERYPARAMS_NO_BOOL (TNTVERSION >= 22000) + // One can request the host part of the request url #define TNT_HAS_GETHOST (TNTVERSION >= 16060) @@ -26,4 +29,13 @@ // version of TNTNET that binds ipv6 addresses with IPV6_V6ONLY flag set to true #define TNT_IPV6_V6ONLY (CXXTOOLVER >= 21000) +// version of TNTNET with properties deserializer for logger configuration args. +#define TNT_LOG_SERINFO (CXXTOOLVER >= 22000) + +// version of TNTNET wich expects name, value mappings for Url-Mapper arguments. +#define TNT_MAPURL_NAMED_ARGS (TNTVERSION >= 22000) + +// version of TNTNET where configuration is global +#define TNT_GLOBAL_TNTCONFIG (TNTVERSION >= 22000) + #endif // VDR_LIVE_TNTFEATURES_H |