summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-04 22:00:26 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-04 22:00:26 +0000
commit8fd36918500991a638d81cdcead9c9c80fd119c1 (patch)
tree6e61bb9e28f54be0b4e6e1bdc8a1b5ff748e426e /TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl
parent0eb92a3dd5f7ee31b0ef3a5c4c1780a4977a89bb (diff)
downloadATCD-8fd36918500991a638d81cdcead9c9c80fd119c1.tar.gz
ChangeLogTag:Fri Sep 4 16:44:19 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl')
-rw-r--r--TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl b/TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl
new file mode 100644
index 00000000000..6f5d043d5c5
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl
@@ -0,0 +1,28 @@
+//
+// $Id$
+//
+#include "RtecEventComm.idl"
+
+module RtecUDPAdmin {
+ // = TITLE
+ // Multicast Administration module
+ //
+ // = DESCRIPTION
+ // When the EC is used as an interface to multicast communication
+ // a mapping between event types and multicast addresses must be
+ // stablished.
+
+ struct UDP_Addr {
+ unsigned long ipaddr;
+ unsigned short port;
+ };
+
+ interface AddrServer {
+ void get_addr (in RtecEventComm::EventHeader header,
+ out UDP_Addr addr);
+ // Get the addr and port given the event header.
+ };
+
+};
+
+