Remove obsolete websocket PROXY port

This commit is contained in:
Vinnie Falco
2014-10-31 15:08:38 -07:00
parent c02937fd6f
commit 8101154d5e
5 changed files with 1 additions and 33 deletions

View File

@@ -198,7 +198,6 @@ public:
std::unique_ptr <RPCDoor> m_rpcDoor;
std::unique_ptr <WSDoor> m_wsPublicDoor;
std::unique_ptr <WSDoor> m_wsPrivateDoor;
std::unique_ptr <WSDoor> m_wsProxyDoor;
beast::WaitableEvent m_stop;
@@ -777,19 +776,6 @@ public:
{
m_journal.info << "WebSocket public interface: disabled";
}
if (!getConfig ().WEBSOCKET_PROXY_IP.empty () && getConfig ().WEBSOCKET_PROXY_PORT)
{
m_wsProxyDoor.reset (WSDoor::New (*m_resourceManager,
getOPs(), getConfig ().WEBSOCKET_PROXY_IP,
getConfig ().WEBSOCKET_PROXY_PORT, true, true,
m_wsSSLContext->get ()));
if (m_wsProxyDoor == nullptr)
{
beast::FatalError ("Could not open the WebSocket public interface.",
__FILE__, __LINE__);
}
}
//----------------------------------------------------------------------