blob: 85991e53de0efc5b717c90f8d8b5492f507eede8 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// TLI.h
//
// = AUTHOR
// Doug Schmidt
//
// ============================================================================
#ifndef ACE_TLI_H
#define ACE_TLI_H
#include "ace/IPC_SAP.h"
#include "ace/Addr.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#if defined (ACE_HAS_TLI)
// There's not a universal device name for TLI devices. If the platform
// needs something other than /dev/tcp, it needs to be set up in the config.h
// file as ACE_TLI_TCP_DEVICE.
#ifndef ACE_TLI_TCP_DEVICE
#define ACE_TLI_TCP_DEVICE "/dev/tcp"
#endif
class ACE_Export ACE_TLI : public ACE_IPC_SAP
{
// = TITLE
// Defines the member functions for the base class of the
// ACE_TLI abstraction.
public:
// = Initialization and termination methods.
ACE_HANDLE open (const char device[],
int oflag = O_RDWR,
struct t_info *info = 0);
// Initialize a TLI endpoint.
int close (void);
// Close a TLI endpoint and release resources.
int set_option (int level, int option, void *optval, int optlen);
// Set underlying protocol options.
int get_option (int level, int option, void *optval, int &optlen);
// Get underlying protocol options.
// = Calls to underlying TLI operations.
int look (void) const;
int rcvdis (struct t_discon * = 0) const;
int snddis (struct t_call * = 0) const;
int sndrel (void) const;
int rcvrel (void) const;
int get_local_addr (ACE_Addr &) const;
// Return our local endpoint address.
void dump (void) const;
// Dump the state of an object.
ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
protected:
// = Ensure we are an abstract class.
ACE_TLI (void);
// Default constructor.
~ACE_TLI (void);
// Destructor.
ACE_TLI (const char device[], int oflag = O_RDWR, struct t_info *info = 0);
// Initialize a TLI endpoint.
private:
#if defined (ACE_HAS_SVR4_TLI)
// Insane TLI option management.
struct t_optmgmt so_opt_req;
struct t_optmgmt so_opt_ret;
#endif /* ACE_HAS_SVR4_TLI */
};
#include "ace/TLI.i"
#endif /* ACE_HAS_TLI */
#endif /* ACE_TLI_H */
|