diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-19 14:18:23 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-19 14:18:23 +0000 |
commit | 588647427b50adf0d92f4b01b1e014d04cc3a767 (patch) | |
tree | dd0c3157d68f794cd76919fb8cb167710b265fb9 /cpp/test/IceSSL/certificateVerification/Server.cpp | |
parent | fix (diff) | |
download | ice-588647427b50adf0d92f4b01b1e014d04cc3a767.tar.bz2 ice-588647427b50adf0d92f4b01b1e014d04cc3a767.tar.xz ice-588647427b50adf0d92f4b01b1e014d04cc3a767.zip |
fix
Diffstat (limited to 'cpp/test/IceSSL/certificateVerification/Server.cpp')
-rw-r--r-- | cpp/test/IceSSL/certificateVerification/Server.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/IceSSL/certificateVerification/Server.cpp b/cpp/test/IceSSL/certificateVerification/Server.cpp index 667bf0cd473..128785bd2d1 100644 --- a/cpp/test/IceSSL/certificateVerification/Server.cpp +++ b/cpp/test/IceSSL/certificateVerification/Server.cpp @@ -162,17 +162,17 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) sslPlugin->setCertificateVerifier(IceSSL::Server, certVerifier); } - properties->setProperty("KeyManagerAdapter.Endpoints", "tcp -p 12344 -t 2000"); + properties->setProperty("KeyManagerAdapter.Endpoints", "tcp -p 12344 -t 10000"); Ice::ObjectAdapterPtr kmAdapter = communicator->createObjectAdapter("KeyManagerAdapter"); kmAdapter->add(object, Ice::stringToIdentity("keyManager")); kmAdapter->activate(); const string pingerEndpoints = - "ssl -p 12345 -t 2000" - ":ssl -p 12346 -t 2000" - ":ssl -p 12347 -t 2000" - ":ssl -p 12348 -t 2000" - ":ssl -p 12349 -t 2000"; + "ssl -p 12345 -t 10000" + ":ssl -p 12346 -t 10000" + ":ssl -p 12347 -t 10000" + ":ssl -p 12348 -t 10000" + ":ssl -p 12349 -t 10000"; properties->setProperty("PingerAdapter.Endpoints", pingerEndpoints); Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("PingerAdapter"); adapter->add(new PingerI(), Ice::stringToIdentity("pinger")); |