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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
.TH ACE_TLI 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_TLI \- Defines the member functions for the base class of the ACE_TLI abstraction.
.SH SYNOPSIS
.br
.PP
\fC#include <TLI.h>\fR
.PP
Inherits \fBACE_IPC_SAP\fR.
.PP
Inherited by \fBACE_TLI_Acceptor\fR, and \fBACE_TLI_Stream\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "ACE_HANDLE \fBopen\fR (const char device[], int oflag = O_RDWR, struct t_info *info = 0)"
.br
.RI "\fIInitialize a TLI endpoint.\fR"
.ti -1c
.RI "int \fBclose\fR (void)"
.br
.RI "\fIClose a TLI endpoint and release resources.\fR"
.ti -1c
.RI "int \fBset_option\fR (int level, int option, void *optval, int optlen)"
.br
.RI "\fISet underlying protocol options.\fR"
.ti -1c
.RI "int \fBget_option\fR (int level, int option, void *optval, int &optlen)"
.br
.RI "\fIGet underlying protocol options.\fR"
.ti -1c
.RI "int \fBlook\fR (void) const"
.br
.ti -1c
.RI "int \fBrcvdis\fR (struct t_discon * = 0) const"
.br
.ti -1c
.RI "int \fBsnddis\fR (struct t_call * = 0) const"
.br
.ti -1c
.RI "int \fBsndrel\fR (void) const"
.br
.ti -1c
.RI "int \fBrcvrel\fR (void) const"
.br
.ti -1c
.RI "int \fBget_local_addr\fR (\fBACE_Addr\fR &) const"
.br
.RI "\fIReturn our local endpoint address.\fR"
.ti -1c
.RI "void \fBdump\fR (void) const"
.br
.RI "\fIDump the state of an object.\fR"
.in -1c
.SS Public Attributes
.in +1c
.ti -1c
.RI "\fBACE_ALLOC_HOOK_DECLARE\fR"
.br
.RI "\fIDeclare the dynamic allocation hooks.\fR"
.in -1c
.SS Protected Methods
.in +1c
.ti -1c
.RI "\fBACE_TLI\fR (void)"
.br
.RI "\fIDefault constructor. Destructor.\fR"
.ti -1c
.RI "\fB~ACE_TLI\fR (void)"
.br
.ti -1c
.RI "\fBACE_TLI\fR (const char device[], int oflag = O_RDWR, struct t_info *info = 0)"
.br
.RI "\fIInitialize a TLI endpoint.\fR"
.in -1c
.SH DETAILED DESCRIPTION
.PP
Defines the member functions for the base class of the ACE_TLI abstraction.
.PP
.SH CONSTRUCTOR & DESTRUCTOR DOCUMENTATION
.PP
.SS ACE_TLI::ACE_TLI (void)\fC [protected]\fR
.PP
Default constructor. Destructor.
.PP
.SS ACE_TLI::~ACE_TLI (void)\fC [protected]\fR
.PP
.SS ACE_TLI::ACE_TLI (const char device[], int oflag = O_RDWR, struct t_info * info = 0)\fC [protected]\fR
.PP
Initialize a TLI endpoint.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS int ACE_TLI::close (void)
.PP
Close a TLI endpoint and release resources.
.PP
Reimplemented in \fBACE_TLI_Acceptor\fR, and \fBACE_TLI_Stream\fR.
.SS void ACE_TLI::dump (void) const
.PP
Dump the state of an object.
.PP
Reimplemented from \fBACE_IPC_SAP\fR.
.PP
Reimplemented in \fBACE_TLI_Acceptor\fR, and \fBACE_TLI_Stream\fR.
.SS int ACE_TLI::get_local_addr (\fBACE_Addr\fR &) const
.PP
Return our local endpoint address.
.PP
.SS int ACE_TLI::get_option (int level, int option, void * optval, int & optlen)
.PP
Get underlying protocol options.
.PP
.SS int ACE_TLI::look (void) const
.PP
.SS ACE_HANDLE ACE_TLI::open (const char device[], int oflag = O_RDWR, struct t_info * info = 0)
.PP
Initialize a TLI endpoint.
.PP
.SS int ACE_TLI::rcvdis (struct t_discon * = 0) const
.PP
.SS int ACE_TLI::rcvrel (void) const
.PP
.SS int ACE_TLI::set_option (int level, int option, void * optval, int optlen)
.PP
Set underlying protocol options.
.PP
.SS int ACE_TLI::snddis (struct t_call * = 0) const
.PP
.SS int ACE_TLI::sndrel (void) const
.PP
.SH MEMBER DATA DOCUMENTATION
.PP
.SS ACE_TLI::ACE_ALLOC_HOOK_DECLARE
.PP
Declare the dynamic allocation hooks.
.PP
Reimplemented from \fBACE_IPC_SAP\fR.
.PP
Reimplemented in \fBACE_TLI_Acceptor\fR, and \fBACE_TLI_Stream\fR.
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|