diff options
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -29,11 +29,9 @@ class Setup // commandline int GetServerPort() const { return m_serverPort; } -#if TNT_SSL_SUPPORT int GetServerSslPort() const { return m_serverSslPort; } std::string GetServerSslCert() const { return m_serverSslCert; } std::string GetServerSslKey() const { return m_serverSslKey; } -#endif IpList const& GetServerIps() const { return m_serverIps; } // vdr-setup int GetLastChannel() const { return m_lastChannel == 0 ? std::numeric_limits< int >::max() : m_lastChannel; } @@ -108,12 +106,10 @@ class Setup mutable std::string m_helpString; // commandline options int m_serverPort; -#if TNT_SSL_SUPPORT int m_serverSslPort; std::string m_serverSslCert; std::string m_serverSslKey; static std::string m_configDirectory; -#endif IpList m_serverIps; std::string m_epgimagedir; @@ -145,9 +141,7 @@ class Setup bool CheckServerPort(); bool CheckServerIps(); -#if TNT_SSL_SUPPORT bool CheckServerSslPort(); -#endif }; Setup& LiveSetup(); |