summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/orbsvcs/HTIOP.idl
blob: 5dc61ec8cbff68c9aff37920b7a1010e93cf1301 (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
// -*- 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 */