diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-09-11 12:33:02 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-09-11 12:33:02 +0000 |
commit | 22056550f5f34cc2ee1cd28a23fd40545c566c4b (patch) | |
tree | dcd27d328d2e11f09924a407cc5fb08dfac32d8d /cpp/src/IceSSL/SslAcceptor.cpp | |
parent | fixed retry bug (diff) | |
download | ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.bz2 ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.xz ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.zip |
Removed the Connection classes, added the new SslTransceiver hierarchy,
cleaned up a lot of code.
Diffstat (limited to 'cpp/src/IceSSL/SslAcceptor.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslAcceptor.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/src/IceSSL/SslAcceptor.cpp b/cpp/src/IceSSL/SslAcceptor.cpp index 925d378f704..420279d3578 100644 --- a/cpp/src/IceSSL/SslAcceptor.cpp +++ b/cpp/src/IceSSL/SslAcceptor.cpp @@ -75,10 +75,7 @@ IceSSL::SslAcceptor::accept(int timeout) _logger->trace(_traceLevels->networkCat, s.str()); } - IceSSL::ConnectionPtr connection = _plugin->createConnection(IceSSL::Server, fd); - TransceiverPtr transPtr = new SslTransceiver(_plugin, fd, connection); - - return transPtr; + return _plugin->createTransceiver(IceSSL::Server, fd); } string |