diff options
author | Bernard Normier <bernard@zeroc.com> | 2010-06-02 18:08:18 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2010-06-02 18:08:18 -0400 |
commit | b4202b6aba7c7b3ee5b21e7338e238718b1bbc0a (patch) | |
tree | 2a7ab6fc3c671d7051ceb55a628209dd95aa62de /cpp/src/Ice/TcpEndpointI.cpp | |
parent | minor change to the way we call GetType in .NET (diff) | |
download | ice-b4202b6aba7c7b3ee5b21e7338e238718b1bbc0a.tar.bz2 ice-b4202b6aba7c7b3ee5b21e7338e238718b1bbc0a.tar.xz ice-b4202b6aba7c7b3ee5b21e7338e238718b1bbc0a.zip |
Fixed bug #4763
Diffstat (limited to 'cpp/src/Ice/TcpEndpointI.cpp')
-rw-r--r-- | cpp/src/Ice/TcpEndpointI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/TcpEndpointI.cpp b/cpp/src/Ice/TcpEndpointI.cpp index fa75de3a35b..e9f41bdd949 100644 --- a/cpp/src/Ice/TcpEndpointI.cpp +++ b/cpp/src/Ice/TcpEndpointI.cpp @@ -370,7 +370,7 @@ IceInternal::TcpEndpointI::connectors_async(const EndpointI_connectorsPtr& callb AcceptorPtr IceInternal::TcpEndpointI::acceptor(EndpointIPtr& endp, const string&) const { - TcpAcceptor* p = new TcpAcceptor(_instance, _host, _port); + TcpAcceptor* p = new TcpAcceptor(_instance, _host, _port, _instance->protocolSupport()); endp = new TcpEndpointI(_instance, _host, p->effectivePort(), _timeout, _connectionId, _compress); return p; } |