summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/Security/Big_Request/TX_Object.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/tests/Security/Big_Request/TX_Object.idl')
-rw-r--r--ACE/TAO/orbsvcs/tests/Security/Big_Request/TX_Object.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/tests/Security/Big_Request/TX_Object.idl b/ACE/TAO/orbsvcs/tests/Security/Big_Request/TX_Object.idl
new file mode 100644
index 00000000000..d9c7441a64a
--- /dev/null
+++ b/ACE/TAO/orbsvcs/tests/Security/Big_Request/TX_Object.idl
@@ -0,0 +1,28 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file TX_Object.idl
+ *
+ * $Id$
+ *
+ * IDL for the SSLIOP Big_Request test.
+ *
+ * @author Andrew Finnell
+ * @author Ossama Othman <ossama@uci.edu>
+ */
+//=============================================================================
+
+#include <OctetSeq.pidl>
+
+typedef CORBA::OctetSeq DataSeq;
+
+interface TX_Object
+{
+
+ void send (in DataSeq data);
+ void recv (out DataSeq data);
+
+ oneway void shutdown ();
+
+};