diff options
author | Anthony Neal <aneal@zeroc.com> | 2001-12-19 16:48:31 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2001-12-19 16:48:31 +0000 |
commit | 73e15974110b3538960ecd4613187d79bd32c47a (patch) | |
tree | 56a62cdb2752e295d4f46810dd2d88623e38e96d /cpp/src/Ice/SslSystemOpenSSL.cpp | |
parent | Fix for ActivePython bug under WIN32. (diff) | |
download | ice-73e15974110b3538960ecd4613187d79bd32c47a.tar.bz2 ice-73e15974110b3538960ecd4613187d79bd32c47a.tar.xz ice-73e15974110b3538960ecd4613187d79bd32c47a.zip |
This is the 'fix' for the IceStorm related bug having to do with oneways.
It requires that Marc make it legal for read() to return 0 bytes.
Diffstat (limited to 'cpp/src/Ice/SslSystemOpenSSL.cpp')
-rw-r--r-- | cpp/src/Ice/SslSystemOpenSSL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/SslSystemOpenSSL.cpp b/cpp/src/Ice/SslSystemOpenSSL.cpp index 5da6270aa8f..aada4c7bff9 100644 --- a/cpp/src/Ice/SslSystemOpenSSL.cpp +++ b/cpp/src/Ice/SslSystemOpenSSL.cpp @@ -1207,7 +1207,7 @@ IceSecurity::Ssl::OpenSSL::System::commonConnectionSetup(Connection* connection) }
else
{
- handshakeReadTimeout = 10000;
+ handshakeReadTimeout = 5000;
}
connection->setHandshakeReadTimeout(handshakeReadTimeout);
|