diff options
| author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2008-04-23 00:59:34 +0200 |
|---|---|---|
| committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2008-04-23 00:59:34 +0200 |
| commit | 799ced44a3ef3e9550afab7ddee17980cda00177 (patch) | |
| tree | 70d1d13413065a277b52eada30251374ca32b58b /setup.h | |
| parent | 207b3423de7d6cb614db4aa225e5af76b833cf24 (diff) | |
| download | vdr-plugin-live-799ced44a3ef3e9550afab7ddee17980cda00177.tar.gz vdr-plugin-live-799ced44a3ef3e9550afab7ddee17980cda00177.tar.bz2 | |
Applied SSL listener patch submitted through bug report #457.
Diffstat (limited to 'setup.h')
| -rw-r--r-- | setup.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -28,6 +28,10 @@ class Setup // commandline int GetServerPort() const { return m_serverPort; } +#ifdef TNTVERS7 + int GetServerSslPort() const { return m_serverSslPort; } + std::string GetServerSslCert() const { return m_serverSslCert; } +#endif IpList const& GetServerIps() const { return m_serverIps; } // vdr-setup int GetLastChannel() const { return m_lastChannel == 0 ? std::numeric_limits< int >::max() : m_lastChannel; } @@ -94,6 +98,11 @@ class Setup mutable std::string m_helpString; // commandline options int m_serverPort; +#ifdef TNTVERS7 + int m_serverSslPort; + std::string m_serverSslCert; + static std::string m_configDirectory; +#endif IpList m_serverIps; std::string m_epgimagedir; @@ -121,6 +130,9 @@ class Setup bool CheckServerPort(); bool CheckServerIps(); +#ifdef TNTVERS7 + bool CheckServerSslPort(); +#endif }; Setup& LiveSetup(); |
