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/faultTolerance/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/faultTolerance/Server.cpp')
-rw-r--r-- | cpp/test/Ice/faultTolerance/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/faultTolerance/Server.cpp b/cpp/test/Ice/faultTolerance/Server.cpp index 8b49d4a9396..3770a2a7d70 100644 --- a/cpp/test/Ice/faultTolerance/Server.cpp +++ b/cpp/test/Ice/faultTolerance/Server.cpp @@ -49,7 +49,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) } ostringstream endpts; - endpts << "default -p " << port; + endpts << "default -p " << port << ":udp"; communicator->getProperties()->setProperty("TestAdapter.Endpoints", endpts.str()); Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter"); Ice::ObjectPtr object = new TestI(adapter); |