diff options
Diffstat (limited to 'cpp/src/IceSSL/SslServerTransceiver.h')
-rw-r--r-- | cpp/src/IceSSL/SslServerTransceiver.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/cpp/src/IceSSL/SslServerTransceiver.h b/cpp/src/IceSSL/SslServerTransceiver.h deleted file mode 100644 index a1ae934d589..00000000000 --- a/cpp/src/IceSSL/SslServerTransceiver.h +++ /dev/null @@ -1,36 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICE_SSL_SERVER_TRANSCEIVER_H -#define ICE_SSL_SERVER_TRANSCEIVER_H - -#include <IceSSL/SslTransceiver.h> - -namespace IceSSL -{ - -class SslServerTransceiver : public SslTransceiver -{ -public: - - virtual int handshake(int timeout = 0); - virtual void write(IceInternal::Buffer&, int); - -protected: - - virtual void showConnectionInfo(); - - SslServerTransceiver(const OpenSSLPluginIPtr&, SOCKET, const CertificateVerifierPtr&, SSL*, int); - friend class ServerContext; -}; - -} - -#endif - |