Removed EndpointManager::SetIdentity and EndpointManager::GetIdentity

This commit is contained in:
Gunnar Beutner 2012-04-24 19:54:06 +02:00
parent 6ab5f710b8
commit 09a7cf9a82
2 changed files with 0 additions and 14 deletions

View File

@ -7,16 +7,6 @@ EndpointManager::EndpointManager(shared_ptr<SSL_CTX> sslContext)
m_SSLContext = sslContext;
}
void EndpointManager::SetIdentity(string identity)
{
m_Identity = identity;
}
string EndpointManager::GetIdentity(void) const
{
return m_Identity;
}
void EndpointManager::AddListener(unsigned short port)
{
JsonRpcServer::Ptr server = make_shared<JsonRpcServer>(m_SSLContext);

View File

@ -14,7 +14,6 @@ class I2_ICINGA_API EndpointManager : public Object
shared_ptr<SSL_CTX> m_SSLContext;
list<JsonRpcServer::Ptr> m_Servers;
list<Endpoint::Ptr> m_Endpoints;
string m_Identity;
void RegisterServer(JsonRpcServer::Ptr server);
void UnregisterServer(JsonRpcServer::Ptr server);
@ -30,9 +29,6 @@ public:
EndpointManager(shared_ptr<SSL_CTX> sslContext);
void SetIdentity(string identity);
string GetIdentity(void) const;
void AddListener(unsigned short port);
void AddConnection(string host, unsigned short port);