summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/SslTransceiver.cpp
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-03-14 15:32:48 +0000
committerAnthony Neal <aneal@zeroc.com>2002-03-14 15:32:48 +0000
commit0686f2bd6231297e3eefffde5db9f200bab127f3 (patch)
tree037785dcbea92fda3eda5d905c5ad81588423d1a /cpp/src/Ice/SslTransceiver.cpp
parentGlacier is broken, but everything else works. (diff)
downloadice-0686f2bd6231297e3eefffde5db9f200bab127f3.tar.bz2
ice-0686f2bd6231297e3eefffde5db9f200bab127f3.tar.xz
ice-0686f2bd6231297e3eefffde5db9f200bab127f3.zip
Updates.
Diffstat (limited to 'cpp/src/Ice/SslTransceiver.cpp')
-rw-r--r--cpp/src/Ice/SslTransceiver.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Ice/SslTransceiver.cpp b/cpp/src/Ice/SslTransceiver.cpp
index f9a4dde64ae..a1148b8813a 100644
--- a/cpp/src/Ice/SslTransceiver.cpp
+++ b/cpp/src/Ice/SslTransceiver.cpp
@@ -8,7 +8,7 @@
//
// **********************************************************************
-#include <Ice/OpenSSL.h>
+#include <Ice/OpenSSL.h>
#include <Ice/SslConnection.h>
#include <Ice/SslTransceiver.h>
#include <Ice/Instance.h>
@@ -63,7 +63,7 @@ IceInternal::SslTransceiver::shutdown()
void
IceInternal::SslTransceiver::write(Buffer& buf, int timeout)
-{
+{
_sslConnection->write(buf, timeout);
}
@@ -72,10 +72,10 @@ IceInternal::SslTransceiver::read(Buffer& buf, int timeout)
{
if (!_sslConnection->read(buf, timeout))
{
- if (_traceLevels->security >= IceSSL::SECURITY_WARNINGS)
- {
- _logger->trace(_traceLevels->securityCat, "WRN Connection::read() returning no bytes read.");
- }
+ if (_traceLevels->security >= IceSSL::SECURITY_WARNINGS)
+ {
+ _logger->trace(_traceLevels->securityCat, "WRN Connection::read() returning no bytes read.");
+ }
}
}