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/Ice/ConnectionI.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/Ice/ConnectionI.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionI.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp index dc50521f6cb..2115665397b 100644 --- a/cpp/src/Ice/ConnectionI.cpp +++ b/cpp/src/Ice/ConnectionI.cpp @@ -114,6 +114,7 @@ Ice::ConnectionI::validate() traceHeader("sending validate connection", os, _logger, _traceLevels); try { + _transceiver->initialize(timeout); _transceiver->write(os, timeout); } catch(const TimeoutException&) @@ -128,6 +129,7 @@ Ice::ConnectionI::validate() is.i = is.b.begin(); try { + _transceiver->initialize(timeout); _transceiver->read(is, timeout); } catch(const TimeoutException&) |