diff options
Diffstat (limited to 'cppe/src/IceE/Connection.cpp')
-rwxr-xr-x | cppe/src/IceE/Connection.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cppe/src/IceE/Connection.cpp b/cppe/src/IceE/Connection.cpp index 33446535389..e32fdbe84b8 100755 --- a/cppe/src/IceE/Connection.cpp +++ b/cppe/src/IceE/Connection.cpp @@ -1861,7 +1861,14 @@ Ice::Connection::run() // BasicStream stream(_instance.get()); - readStream(stream); + try + { + readStream(stream); + } + catch(const Ice::TimeoutException&) + { + continue; + } Int requestId = 0; #ifndef ICEE_PURE_CLIENT |