diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-09-28 20:13:25 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-09-28 20:13:25 +0000 |
commit | cde323e241d6f22c9dd24e7f8b8f0550bbf86855 (patch) | |
tree | 9766c34c6a0ce9e8e353a33f36dacd4e505fa2c7 /cpp/test/Ice/operations/Server.cpp | |
parent | adding thread-per-connection (diff) | |
download | ice-cde323e241d6f22c9dd24e7f8b8f0550bbf86855.tar.bz2 ice-cde323e241d6f22c9dd24e7f8b8f0550bbf86855.tar.xz ice-cde323e241d6f22c9dd24e7f8b8f0550bbf86855.zip |
adding UDP endpoint to some tests
Diffstat (limited to 'cpp/test/Ice/operations/Server.cpp')
-rw-r--r-- | cpp/test/Ice/operations/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/operations/Server.cpp b/cpp/test/Ice/operations/Server.cpp index c5e61af62cd..b14be356aeb 100644 --- a/cpp/test/Ice/operations/Server.cpp +++ b/cpp/test/Ice/operations/Server.cpp @@ -15,7 +15,7 @@ using namespace std; int run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { - communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 10000"); + communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 10000:udp"); Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter"); Ice::Identity id = Ice::stringToIdentity("test"); adapter->add(new MyDerivedClassI(adapter, id), id); |