summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/RtecUDPAdmin.idl
blob: 68525f07d2d542bc5f0a1e83d7dfb714a675ae55 (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
29
30
31
32
33
// $Id$

#ifndef TAO_RTEC_UDP_ADMIN_IDL
#define TAO_RTEC_UDP_ADMIN_IDL

#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.
    };

};

#endif /* TAO_RTEC_UDP_ADMIN_IDL */