summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-11-21 17:08:45 +0000
committerMarc Laukien <marc@zeroc.com>2001-11-21 17:08:45 +0000
commitbc6891fb54e110accaaf08b37a83d7c8d9809d63 (patch)
treec3587bceae2f0f6e791d58699b1a6eaba1a89616 /cpp/src/Ice/Proxy.cpp
parentUpdated to include the Security tracing property. (diff)
downloadice-bc6891fb54e110accaaf08b37a83d7c8d9809d63.tar.bz2
ice-bc6891fb54e110accaaf08b37a83d7c8d9809d63.tar.xz
ice-bc6891fb54e110accaaf08b37a83d7c8d9809d63.zip
fixes
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index 0d83cbfa204..0d642e39a69 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -22,6 +22,7 @@
#include <Ice/BasicStream.h>
#include <Ice/Exception.h>
#include <Ice/Functional.h>
+#include <Ice/SecurityException.h> // TODO: bandaid, see below.
using namespace std;
using namespace Ice;
@@ -347,6 +348,10 @@ IceProxy::Ice::Object::__handleException(const LocalException& ex, int& cnt)
{
++cnt;
}
+ catch (const IceSecurity::SecurityException& ex) // TODO: bandaid to make retry w/ ssl work.
+ {
+ ++cnt;
+ }
catch (const DNSException&)
{
++cnt;