summaryrefslogtreecommitdiff
path: root/usr/src/man/man3dat/dat_ep_connect.3dat
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/man/man3dat/dat_ep_connect.3dat')
-rw-r--r--usr/src/man/man3dat/dat_ep_connect.3dat47
1 files changed, 8 insertions, 39 deletions
diff --git a/usr/src/man/man3dat/dat_ep_connect.3dat b/usr/src/man/man3dat/dat_ep_connect.3dat
index 79d4f8dcda..561a632787 100644
--- a/usr/src/man/man3dat/dat_ep_connect.3dat
+++ b/usr/src/man/man3dat/dat_ep_connect.3dat
@@ -4,14 +4,14 @@
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
-.TH dat_ep_connect 3DAT "16 Jul 2004" "SunOS 5.11" "Direct Access Transport Library Functions"
+.TH DAT_EP_CONNECT 3DAT "Jul 16, 2004"
.SH NAME
dat_ep_connect \- establish a connection between the local Endpoint and a
remote Endpoint
.SH SYNOPSIS
.LP
.nf
-cc [ \fIflag\fR\&.\|.\|. ] \fIfile\fR\&.\|.\|. \fB-ldat\fR [ \fIlibrary\fR\&.\|.\|. ]
+cc [ \fIflag\fR\&.\|.\|. ] \fIfile\fR\&.\|.\|. \fB-ldat\fR [ \fIlibrary\fR\&.\|.\|. ]
#include <\fBdat/udat.h\fR>
DAT_RETURN
@@ -30,46 +30,38 @@ DAT_RETURN
.SH PARAMETERS
.sp
.ne 2
-.mk
.na
\fB\fIep_handle\fR\fR
.ad
.RS 21n
-.rt
Handle for an instance of an Endpoint.
.RE
.sp
.ne 2
-.mk
.na
\fB\fIremote_ia_address\fR\fR
.ad
.RS 21n
-.rt
The Address of the remote IA to which an Endpoint is requesting a connection.
.RE
.sp
.ne 2
-.mk
.na
\fB\fIremote_conn_qual\fR\fR
.ad
.RS 21n
-.rt
Connection Qualifier of the remote IA from which an Endpoint requests a
connection.
.RE
.sp
.ne 2
-.mk
.na
\fB\fItimeout\fR\fR
.ad
.RS 21n
-.rt
Duration of time, in microseconds, that a Consumer waits for Connection
establishment. The value of \fBDAT_TIMEOUT_INFINITE\fR represents no timeout,
indefinite wait. Values must be positive.
@@ -77,23 +69,19 @@ indefinite wait. Values must be positive.
.sp
.ne 2
-.mk
.na
\fB\fIprivate_data_size\fR\fR
.ad
.RS 21n
-.rt
Size of the \fIprivate_data\fR. Must be nonnegative.
.RE
.sp
.ne 2
-.mk
.na
\fB\fIprivate_data\fR\fR
.ad
.RS 21n
-.rt
Pointer to the private data that should be provided to the remote Consumer as
part of the Connection Request. If \fIprivate_data_size\fR is zero, then
\fIprivate_data\fR can be \fINULL\fR.
@@ -101,23 +89,19 @@ part of the Connection Request. If \fIprivate_data_size\fR is zero, then
.sp
.ne 2
-.mk
.na
\fB\fIqos\fR\fR
.ad
.RS 21n
-.rt
Requested quality of service of the connection.
.RE
.sp
.ne 2
-.mk
.na
\fB\fIconnect_flags\fR\fR
.ad
.RS 21n
-.rt
Flags for the requested connection. If the least significant bit of
\fBDAT_MULTIPATH_FLAG\fR is 0, the Consumer does not request multipathing. If
the least significant bit of \fBDAT__MULTIPATH_FLAG\fR is 1, the Consumer
@@ -211,79 +195,65 @@ the local Endpoint.
.SH RETURN VALUES
.sp
.ne 2
-.mk
.na
\fB\fBDAT_SUCCESS\fR\fR
.ad
.RS 30n
-.rt
The operation was successful.
.RE
.sp
.ne 2
-.mk
.na
\fB\fBDAT_INSUFFICIENT_RESOURCES\fR\fR
.ad
.RS 30n
-.rt
The operation failed due to resource limitations.
.RE
.sp
.ne 2
-.mk
.na
\fB\fBDAT_INVALID_PARAMETER\fR\fR
.ad
.RS 30n
-.rt
Invalid parameter.
.RE
.sp
.ne 2
-.mk
.na
\fB\fBDAT_INVALID_ADDRESS\fR\fR
.ad
.RS 30n
-.rt
Invalid address.
.RE
.sp
.ne 2
-.mk
.na
\fB\fBDAT_INVALID_HANDLE\fR\fR
.ad
.RS 30n
-.rt
Invalid DAT handle; Invalid Endpoint handle.
.RE
.sp
.ne 2
-.mk
.na
\fB\fBDAT_INVALID_STATE\fR\fR
.ad
.RS 30n
-.rt
Parameter in an invalid state. Endpoint was not in
\fBDAT_EP_STATE_UNCONNECTED\fR state.
.RE
.sp
.ne 2
-.mk
.na
\fB\fBDAT_MODEL_NOT_SUPPORTED\fR\fR
.ad
.RS 30n
-.rt
The requested Model was not supported by the Provider. For example, the
requested qos was not supported by the local Provider.
.RE
@@ -319,15 +289,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes:
.sp
.TS
-tab() box;
-cw(2.75i) |cw(2.75i)
-lw(2.75i) |lw(2.75i)
-.
-ATTRIBUTE TYPEATTRIBUTE VALUE
+box;
+c | c
+l | l .
+ATTRIBUTE TYPE ATTRIBUTE VALUE
_
-Interface StabilityStandard: uDAPL, 1.1, 1.2
+Interface Stability Standard: uDAPL, 1.1, 1.2
_
-MT-LevelUnsafe
+MT-Level Unsafe
.TE
.SH SEE ALSO