diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-06-27 17:54:30 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-06-27 17:54:30 +0200 |
commit | c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7 (patch) | |
tree | 5cb64dfe155e5d2349efb6c7dc4b0f5b5284d44a /cpp/src/Ice/WSConnector.cpp | |
parent | Fix Windows php build to restore nuget packages (diff) | |
download | ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.tar.bz2 ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.tar.xz ice-c56f8ab6ca6ca0bdb9536fcce1ef24f1ef40ddc7.zip |
Refactored SSL and iAP transports, support for running SSL on top
of TCP/iAP/Bluetooth.
Diffstat (limited to 'cpp/src/Ice/WSConnector.cpp')
-rw-r--r-- | cpp/src/Ice/WSConnector.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/WSConnector.cpp b/cpp/src/Ice/WSConnector.cpp index 91e6a9a7eed..beec5f0ab70 100644 --- a/cpp/src/Ice/WSConnector.cpp +++ b/cpp/src/Ice/WSConnector.cpp @@ -19,7 +19,7 @@ using namespace IceInternal; TransceiverPtr IceInternal::WSConnector::connect() { - return new WSTransceiver(_instance, _delegate->connect(), _host, _port, _resource); + return new WSTransceiver(_instance, _delegate->connect(), _host, _resource); } Short @@ -102,9 +102,9 @@ IceInternal::WSConnector::operator<(const Connector& r) const return false; } -IceInternal::WSConnector::WSConnector(const ProtocolInstancePtr& instance, const ConnectorPtr& del, const string& host, - int port, const string& resource) : - _instance(instance), _delegate(del), _host(host), _port(port), _resource(resource) +IceInternal::WSConnector::WSConnector(const ProtocolInstancePtr& instance, const ConnectorPtr& del, const string& host, + const string& resource) : + _instance(instance), _delegate(del), _host(host), _resource(resource) { } |