summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/udp/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/udp/TestI.cpp')
-rw-r--r--cpp/test/Ice/udp/TestI.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/cpp/test/Ice/udp/TestI.cpp b/cpp/test/Ice/udp/TestI.cpp
new file mode 100644
index 00000000000..55657e25ada
--- /dev/null
+++ b/cpp/test/Ice/udp/TestI.cpp
@@ -0,0 +1,47 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#include <IceUtil/IceUtil.h>
+#include <Ice/Ice.h>
+#include <TestI.h>
+
+using namespace std;
+using namespace Ice;
+
+void
+TestIntfI::ping(const Test::PingReplyPrx& reply, const Current& current)
+{
+ try
+ {
+ reply->reply();
+ }
+ catch(const Ice::Exception&)
+ {
+ assert(false);
+ }
+}
+
+void
+TestIntfI::sendByteSeq(const Test::ByteSeq&, const Test::PingReplyPrx& reply, const Current& current)
+{
+ try
+ {
+ reply->reply();
+ }
+ catch(const Ice::Exception&)
+ {
+ assert(false);
+ }
+}
+
+void
+TestIntfI::shutdown(const Current& current)
+{
+ current.adapter->getCommunicator()->shutdown();
+}