summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/HTIOP.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/HTIOP.idl')
-rw-r--r--TAO/orbsvcs/orbsvcs/HTIOP.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/HTIOP.idl b/TAO/orbsvcs/orbsvcs/HTIOP.idl
new file mode 100644
index 00000000000..5dc61ec8cbf
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/HTIOP.idl
@@ -0,0 +1,30 @@
+// -*- IDL -*-
+//
+// $Id$
+
+#ifndef HTIOP_IDL
+#define HTIOP_IDL
+
+// This is a OMG specified IDL. When HTIOP modules start getting
+// complicated we may want to have them here.
+#pragma prefix "omg.org"
+
+
+module HTIOP
+{
+ struct ListenPoint
+ {
+ string host;
+ unsigned short port;
+ string htid;
+ };
+
+ typedef sequence<ListenPoint> ListenPointList;
+
+ struct BiDirHTIOPServiceContext
+ {
+ ListenPointList listen_points;
+ };
+};
+
+#endif /* TAO_IIOP_PIDL */