summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/orbsvcs/HTIOP/htiop_endpoints.pidl
blob: 6af510591a8c32f7db703f7f51262f45d2f0b667 (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
34
35
36
37
38
39
40
41
42
// -*- IDL -*-
//
// $Id$

/*
 * This file contains idl definition for data structures used to
 * encapsulate data in TAO_TAG_ENDPOINTS tagged component.  This
 * TAO-specific component is used for transmission of multiple
 * endpoints per single profile.  Data structures defined here are
 * used for transmission of htiop Endpoints.  See HTIOP_Profile.*
 * for more details.
 *
 * This file was used to generate the code in
 * htiop_endpoints.* The command used to generate code
 * is:
 *
 *      tao_idl
 *           -Gp -Gd -Sc -Sa -DCORBA3 -Sci \
 *           -Wb,export_macro=HTIOP_Export \
 *           -Wb,export_include="HTIOP_Export.h" \
 *           -Wb,pre_include="ace/pre.h" \
 *           -Wb,post_include="ace/post.h" \
 *           htiop_endpoints.pidl
 */

#ifndef _HTIOP_ENDPOINTS_IDL_
#define _HTIOP_ENDPOINTS_IDL_

// Stores information for a single HTIOP endpoint.
struct HTIOP_Endpoint_Info
{
  string host;
  short port;
  string htid;
};

// Stores information for a collection of HTIOP endpoints.
typedef sequence <HTIOP_Endpoint_Info> HTIOPEndpointSequence;

#pragma prefix ""

#endif /* _HTIOP_ENDPOINTS_IDL_ */