diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-03-20 18:18:03 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-03-20 18:18:03 +0100 |
commit | c6133370d229578697c157f94b297dcc593b4a5f (patch) | |
tree | 9bbc2e3083338315393109a511e7a65d09dc9ac6 /cpp/test/Ice/timeout/Server.cpp | |
parent | Remove src directory. (diff) | |
download | ice-c6133370d229578697c157f94b297dcc593b4a5f.tar.bz2 ice-c6133370d229578697c157f94b297dcc593b4a5f.tar.xz ice-c6133370d229578697c157f94b297dcc593b4a5f.zip |
Added iOS support for IceTouch
Diffstat (limited to 'cpp/test/Ice/timeout/Server.cpp')
-rw-r--r-- | cpp/test/Ice/timeout/Server.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/test/Ice/timeout/Server.cpp b/cpp/test/Ice/timeout/Server.cpp index b8821afafdd..31da110c400 100644 --- a/cpp/test/Ice/timeout/Server.cpp +++ b/cpp/test/Ice/timeout/Server.cpp @@ -39,6 +39,14 @@ main(int argc, char* argv[]) Ice::InitializationData initData; initData.properties = Ice::createProperties(argc, argv); +#if TARGET_OS_IPHONE != 0 + // + // COMPILERFIX: Disable connect timeout introduced for + // workaround to iOS device hangs when using SSL + // + initData.properties->setProperty("Ice.Override.ConnectTimeout", ""); +#endif + // // This test kills connections, so we don't want warnings. // |