diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-05 14:26:38 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-05 14:26:38 +0000 |
commit | 088253dd72c4e65cf8230719def050d0d043aa92 (patch) | |
tree | b54fc12cc78cef3eca7c57de368c116dfa4307bb /cpp/src/Ice/SslConnectionOpenSSLClient.h | |
parent | bug fix for dispatching new operations (diff) | |
download | ice-088253dd72c4e65cf8230719def050d0d043aa92.tar.bz2 ice-088253dd72c4e65cf8230719def050d0d043aa92.tar.xz ice-088253dd72c4e65cf8230719def050d0d043aa92.zip |
Big check in. Glacier client authentication (certificate verification) has
been added, SSL logging has been removed, a few clean-ups have taken
place. Getting ready for SSL Extension refactoring.
Diffstat (limited to 'cpp/src/Ice/SslConnectionOpenSSLClient.h')
-rw-r--r-- | cpp/src/Ice/SslConnectionOpenSSLClient.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/cpp/src/Ice/SslConnectionOpenSSLClient.h b/cpp/src/Ice/SslConnectionOpenSSLClient.h index 9faa82df08a..fdf0e6c0779 100644 --- a/cpp/src/Ice/SslConnectionOpenSSLClient.h +++ b/cpp/src/Ice/SslConnectionOpenSSLClient.h @@ -22,21 +22,17 @@ namespace Ssl namespace OpenSSL { -using namespace Ice; - -using IceSecurity::Ssl::SystemPtr; - class ClientConnection : public Connection { public: - ClientConnection(const CertificateVerifierPtr&, SSL*, const SystemPtr&); + ClientConnection(const CertificateVerifierPtr&, SSL*, const IceSecurity::Ssl::SystemPtr&); virtual ~ClientConnection(); virtual void shutdown(); virtual int init(int timeout = 0); - virtual int read(Buffer&, int); - virtual int write(Buffer&, int); + virtual int read(IceInternal::Buffer&, int); + virtual int write(IceInternal::Buffer&, int); protected: |