summaryrefslogtreecommitdiff
path: root/TAO/tao/Strategies/sciop_endpoints.pidl
blob: 20088796da93d6442a5ce170aacde7e7e3463e7e (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
43
44
45
46
47
48
49
50
51
//
// $Id$
//
// ================================================================
//
// = LIBRARY
//   TAO
//
// = FILENAME
//   sciop_endpoints.pidl
//
// = DESCRIPTION
//   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 SCIOP Endpoints.  See SCIOP_Profile.*
//   for more details.
//
//
//   This file was used to generate the code in
//   sciop_endpoints.* The command used to generate code
//   is:
//
//     tao_idl
//         -o orig -Gp -Gd -Ge 1 -Sa -DCORBA3 -Sci
//          -Wb,export_macro=TAO_Strategies_Export \
//          -Wb,export_include="strategies_export.h" \
//          -Wb,pre_include="ace/pre.h" \
//          -Wb,post_include="ace/post.h" \
//          sciop_endpoints.pidl
//
// ================================================================

#ifndef _SCIOP_ENDPOINTS_IDL_
#define _SCIOP_ENDPOINTS_IDL_

/// Stores information for a single SCIOP endpoint.
struct TAO_SCIOP_Endpoint_Info
{
  string host;
  short port;
  short priority;
};

/// Stores information for a collection of SCIOP endpoints.
typedef sequence <TAO_SCIOP_Endpoint_Info> TAO_SCIOPEndpointSequence;

#pragma prefix ""

#endif /* _SCIOP_ENDPOINTS_IDL_ */