summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl
blob: 6f5d043d5c5e6c00f126d4d2ba68f562a69353ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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.
  };

};