summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Instance.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-08-13 22:30:18 +0200
committerJose <jose@zeroc.com>2014-08-13 22:30:18 +0200
commitedd76dbfad6a28c11e441571af493e1eb99ddf52 (patch)
tree6e8d1045d6e4c60120970468d68b4734e2fee6e0 /cpp/src/Ice/Instance.cpp
parent- Added back the Ice.BackgroundIO property. (diff)
downloadice-edd76dbfad6a28c11e441571af493e1eb99ddf52.tar.bz2
ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.tar.xz
ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.zip
Rename WS transport files for consistency with TCP/UDP transports.
Diffstat (limited to 'cpp/src/Ice/Instance.cpp')
-rw-r--r--cpp/src/Ice/Instance.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/Instance.cpp b/cpp/src/Ice/Instance.cpp
index b1561236075..8bf1162ce8d 100644
--- a/cpp/src/Ice/Instance.cpp
+++ b/cpp/src/Ice/Instance.cpp
@@ -69,7 +69,7 @@
# include <Ice/winrt/StreamEndpointI.h>
#endif
-#include <Ice/WSEndpointI.h>
+#include <Ice/WSEndpoint.h>
using namespace std;
using namespace Ice;
@@ -1176,8 +1176,8 @@ IceInternal::Instance::Instance(const CommunicatorPtr& communicator, const Initi
_endpointFactoryManager->add(sslEndpointFactory);
ProtocolInstancePtr wssProtocolInstance = new ProtocolInstance(this, WSSEndpointType, "wss");
- EndpointFactoryPtr wssEndpointFactory = new WSEndpointFactoryI(wssProtocolInstance,
- sslEndpointFactory->clone(wssProtocolInstance));
+ EndpointFactoryPtr wssEndpointFactory = new WSEndpointFactory(wssProtocolInstance,
+ sslEndpointFactory->clone(wssProtocolInstance));
_endpointFactoryManager->add(wssEndpointFactory);
#endif
ProtocolInstancePtr udpProtocolInstance = new ProtocolInstance(this, UDPEndpointType, "udp");
@@ -1185,8 +1185,8 @@ IceInternal::Instance::Instance(const CommunicatorPtr& communicator, const Initi
_endpointFactoryManager->add(udpEndpointFactory);
ProtocolInstancePtr wsProtocolInstance = new ProtocolInstance(this, WSEndpointType, "ws");
- EndpointFactoryPtr wsEndpointFactory = new WSEndpointFactoryI(wsProtocolInstance,
- tcpEndpointFactory->clone(wsProtocolInstance));
+ EndpointFactoryPtr wsEndpointFactory = new WSEndpointFactory(wsProtocolInstance,
+ tcpEndpointFactory->clone(wsProtocolInstance));
_endpointFactoryManager->add(wsEndpointFactory);