diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-11-08 05:51:21 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-11-08 05:51:21 +0000 |
commit | a87f73de1aba389cb70836534d093edfe30ff7e9 (patch) | |
tree | b47e29b4ed6982fc9a81b36af20e9d6a79b1ddcc /cpp/src/IceSSL/SslAcceptor.cpp | |
parent | Icons update (diff) | |
download | ice-a87f73de1aba389cb70836534d093edfe30ff7e9.tar.bz2 ice-a87f73de1aba389cb70836534d093edfe30ff7e9.tar.xz ice-a87f73de1aba389cb70836534d093edfe30ff7e9.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=534
Diffstat (limited to 'cpp/src/IceSSL/SslAcceptor.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslAcceptor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceSSL/SslAcceptor.cpp b/cpp/src/IceSSL/SslAcceptor.cpp index 242fe32f992..b3ee099055f 100644 --- a/cpp/src/IceSSL/SslAcceptor.cpp +++ b/cpp/src/IceSSL/SslAcceptor.cpp @@ -12,7 +12,7 @@ #include <IceSSL/OpenSSLPluginI.h> #include <IceSSL/SslAcceptor.h> -#include <IceSSL/SslTransceiver.h> +#include <IceSSL/SslServerTransceiver.h> #include <IceSSL/TraceLevels.h> using namespace std; @@ -71,7 +71,7 @@ IceSSL::SslAcceptor::accept(int timeout) out << "accepted ssl connection\n" << fdToString(fd); } - return _plugin->createTransceiver(IceSSL::Server, fd, timeout); + return _plugin->createServerTransceiver(fd, timeout); } void |