8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3nsl / t_snd.3nsl
blob5531a2ba52550da47b82fae8d1e8dd2fedbf7a88
1 '\" te
2 .\"  Copyright 1994, The X/Open Company Ltd.  All Rights Reserved  Portions Copyright 1989 AT&T  Portions Copyright (c) 1998, Sun Microsystems, Inc.  All Rights Reserved
3 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
4 .\" http://www.opengroup.org/bookstore/.
5 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
6 .\"  This notice shall appear on any product containing this material.
7 .\" 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.
8 .\" 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.
9 .\" 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]
10 .TH T_SND 3NSL "May 7, 1998"
11 .SH NAME
12 t_snd \- send data or expedited data over a connection
13 .SH SYNOPSIS
14 .LP
15 .nf
16 #include <xti.h>
20 \fBint\fR \fBt_snd\fR(\fBint\fR \fIfd\fR, \fBvoid *\fR\fIbuf\fR, \fBunsigned int\fR \fInbytes\fR, \fBint\fR \fIflags\fR);
21 .fi
23 .SH DESCRIPTION
24 .sp
25 .LP
26 This routine is part of the \fBXTI\fR interfaces which evolved from the
27 \fBTLI\fR interfaces. \fBXTI\fR represents the future evolution of these
28 interfaces. However, \fBTLI\fR interfaces are supported for compatibility. When
29 using a \fBTLI\fR routine that has the same name as an \fBXTI\fR routine, the
30 \fBtiuser.h\fR header file must be used.  Refer to the  \fBTLI\fR
31 \fBCOMPATIBILITY\fR section for a description of differences between the two
32 interfaces.
33 .sp
34 .LP
35 This function is used to send either normal or expedited data. The argument
36 \fIfd\fR identifies the local transport endpoint over which data should be
37 sent, \fIbuf\fR points to the user data, \fInbytes\fR specifies the number of
38 bytes of user data to be sent, and \fIflags\fR specifies any optional flags
39 described below:
40 .sp
41 .ne 2
42 .na
43 \fB\fBT_EXPEDITED\fR \fR
44 .ad
45 .RS 16n
46 If set in \fIflags\fR, the data will be sent as expedited data and will be
47 subject to the interpretations of the transport provider.
48 .RE
50 .sp
51 .ne 2
52 .na
53 \fB\fBT_MORE\fR \fR
54 .ad
55 .RS 16n
56 If set in \fIflags\fR, this indicates to the transport provider that the
57 transport service data unit (TSDU) (or expedited transport service data unit -
58 ETSDU) is being sent through multiple \fBt_snd()\fR calls.  Each \fBt_snd()\fR
59 with the  \fBT_MORE\fR flag set indicates that another \fBt_snd()\fR will
60 follow with more data for the current TSDU (or ETSDU).
61 .sp
62 The end of the TSDU (or ETSDU) is identified by a \fBt_snd()\fR call with the
63 \fBT_MORE\fR flag not set. Use of  \fBT_MORE\fR enables a user to break up
64 large logical data units without losing the boundaries of those units at the
65 other end of the connection. The flag implies nothing about how the data is
66 packaged for transfer below the transport interface. If the transport provider
67 does not support the concept of a TSDU as indicated in the \fIinfo\fR argument
68 on return from \fBt_open\fR(3NSL) or \fBt_getinfo\fR(3NSL), the  \fBT_MORE\fR
69 flag is not meaningful and will be ignored if set.
70 .sp
71 The sending of a zero-length fragment of a TSDU or ETSDU is only permitted
72 where this is used to indicate the end of a TSDU or ETSDU; that is, when the
73 \fBT_MORE\fR flag is not set. Some transport providers also forbid zero-length
74 TSDUs and ETSDUs.
75 .RE
77 .sp
78 .ne 2
79 .na
80 \fB\fBT_PUSH\fR \fR
81 .ad
82 .RS 16n
83 If set in \fIflags\fR, requests that the provider transmit all data that it has
84 accumulated but not sent.  The request is a local action on the provider and
85 does not affect any similarly named protocol flag (for example, the TCP PUSH
86 flag). This effect of setting this flag is protocol\(hydependent, and it may be
87 ignored entirely by transport providers which do not support the use of this
88 feature.
89 .RE
91 .sp
92 .LP
93 Note that the communications provider is free to collect data in a send buffer
94 until it accumulates a sufficient amount for transmission.
95 .sp
96 .LP
97 By default, \fBt_snd()\fR operates in synchronous mode and may wait if flow
98 control restrictions prevent the data from being accepted by the local
99 transport provider at the time the call is made.  However, if  \fBO_NONBLOCK\fR
100 is set by means of  \fBt_open\fR(3NSL) or \fBfcntl\fR(2), \fBt_snd()\fR will
101 execute in asynchronous mode, and will fail immediately if there are flow
102 control restrictions. The process can arrange to be informed when the flow
103 control restrictions are cleared by means of either \fBt_look\fR(3NSL) or the
104 EM interface.
107 On successful completion,  \fBt_snd()\fR returns the number of bytes (octets)
108 accepted by the communications provider.  Normally this will equal the number
109 of octets specified in nbytes.  However, if \fBO_NONBLOCK\fR is set or the
110 function is interrupted by a signal, it is possible that only part of the data
111 has actually been accepted by the communications provider.  In this case,
112 \fBt_snd()\fR returns a value that is less than the value of nbytes.  If
113 \fBt_snd()\fR is interrupted by a signal before it could transfer data to the
114 communications provider, it returns  -1 with  \fBt_errno\fR set to
115 \fBTSYSERR\fR and  \fBerrno\fR set to \fBEINTR\fR.
118 If nbytes is zero and sending of zero bytes is not supported by the underlying
119 communications service,  \fBt_snd()\fR returns \(mi1 with  \fBt_errno\fR set to
120 \fBTBADDATA\fR.
123 The size of each TSDU or ETSDU must not exceed the limits of the transport
124 provider as specified by the current values in the TSDU or ETSDU fields in the
125 \fIinfo\fR argument returned by \fBt_getinfo\fR(3NSL).
128 The error \fBTLOOK\fR is returned for asynchronous events. It is required only
129 for an incoming disconnect event but may be returned for other events.
130 .SH RETURN VALUES
133 On successful completion, \fBt_snd()\fR returns the number of bytes accepted by
134 the transport provider. Otherwise,  -1 is returned on failure and \fBt_errno\fR
135 is set to indicate the error.
138 Note that if the number of bytes accepted by the communications provider is
139 less than the number of bytes requested, this may either indicate that
140 \fBO_NONBLOCK\fR is set and the communications provider is blocked due to flow
141 control, or that  \fBO_NONBLOCK\fR is clear and the function was interrupted by
142 a signal.
143 .SH ERRORS
146 On failure, \fBt_errno\fR is set to one of the following:
148 .ne 2
150 \fB\fBTBADDATA\fR\fR
152 .RS 15n
153 Illegal amount of data:
154 .RS +4
156 .ie t \(bu
157 .el o
158 A single send was attempted specifying a TSDU (ETSDU) or fragment TSDU (ETSDU)
159 greater than that specified by the current values of the TSDU or ETSDU fields
160 in the \fIinfo\fR argument.
162 .RS +4
164 .ie t \(bu
165 .el o
166 A send of a zero byte TSDU (ETSDU) or zero byte fragment of a TSDU (ETSDU) is
167 not supported by the provider.
169 .RS +4
171 .ie t \(bu
172 .el o
173 Multiple sends were attempted resulting in a TSDU (ETSDU) larger than that
174 specified by the current value of the TSDU or ETSDU fields in the \fIinfo\fR
175 argument - the ability of an XTI implementation to detect such an error case is
176 implementation-dependent. See \fBWARNINGS\fR, below.
181 .ne 2
183 \fB\fBTBADF\fR\fR
185 .RS 15n
186 The specified file descriptor does not refer to a transport endpoint.
190 .ne 2
192 \fB\fBTBADFLAG\fR\fR
194 .RS 15n
195 An invalid flag was specified.
199 .ne 2
201 \fB\fBTFLOW\fR\fR
203 .RS 15n
204 \fBO_NONBLOCK\fR was set, but the flow control mechanism prevented the
205 transport provider from accepting any data at this time.
209 .ne 2
211 \fB\fBTLOOK\fR\fR
213 .RS 15n
214 An asynchronous event has occurred on this transport endpoint.
218 .ne 2
220 \fB\fBTNOTSUPPORT\fR\fR
222 .RS 15n
223 This function is not supported by the underlying transport provider.
227 .ne 2
229 \fB\fBTOUTSTATE\fR\fR
231 .RS 15n
232 The communications endpoint referenced by  \fIfd\fR is not in one of the states
233 in which a call to this function is valid.
237 .ne 2
239 \fB\fBTPROTO\fR\fR
241 .RS 15n
242 This error indicates that a communication problem has been detected between XTI
243 and the transport provider for which there is no other suitable XTI error
244 \fB(t_errno)\fR.
248 .ne 2
250 \fB\fBTSYSERR\fR\fR
252 .RS 15n
253 A system error has occurred during execution of this function.
256 .SH TLI COMPATIBILITY
259 The \fBXTI\fR and \fBTLI\fR interface definitions have common names but use
260 different header files. This, and other semantic differences between the two
261 interfaces are described in the subsections below.
262 .SS "Interface Header"
265 The \fBXTI\fR interfaces use the header file, \fBxti.h\fR. \fBTLI\fR interfaces
266 should \fInot\fR use this header.  They should use the header:
268 .in +2
269 #include <tiuser.h>
270 .in -2
271 .SS "Error Description Values"
274 The \fBt_errno\fR values that can be set by the \fBXTI\fR interface and cannot
275 be set by the \fBTLI\fR interface are:
277 .in +2
278 \fBTPROTO\fR
279 .in -2
281 .in +2
282 \fBTLOOK\fR
283 .in -2
285 .in +2
286 \fBTBADFLAG\fR
287 .in -2
289 .in +2
290 \fBTOUTSTATE\fR
291 .in -2
294 The \fBt_errno\fR values that this routine can return under different
295 circumstances than its \fBXTI\fR counterpart are:
297 .in +2
298 \fBTBADDATA\fR
299 .in -2
302 In the \fBTBADDATA\fR error cases described above, \fBTBADDATA\fR is returned,
303 only for illegal zero byte \fBTSDU\fR ( \fBETSDU\fR) send attempts.
304 .SH ATTRIBUTES
307 See \fBattributes\fR(5)  for descriptions of the following attributes:
312 box;
313 c | c
314 l | l .
315 ATTRIBUTE TYPE  ATTRIBUTE VALUE
317 MT Level        Safe
320 .SH SEE ALSO
323 \fBfcntl\fR(2), \fBt_getinfo\fR(3NSL), \fBt_look\fR(3NSL), \fBt_open\fR(3NSL),
324 \fBt_rcv\fR(3NSL), \fBattributes\fR(5)
325 .SH WARNINGS
328 It is important to remember that the transport provider treats all users of a
329 transport endpoint as a single user. Therefore if several processes issue
330 concurrent \fBt_snd()\fR calls then the different data may be intermixed.
333 Multiple sends which exceed the maximum TSDU or ETSDU size may not be
334 discovered by XTI.  In this case an implementation-dependent error will result,
335 generated by the transport provider, perhaps on a subsequent XTI call.  This
336 error may take the form of a connection abort, a \fBTSYSERR\fR, a
337 \fBTBADDATA\fR or a \fBTPROTO\fR error.
340 If multiple sends which exceed the maximum TSDU or ETSDU size are detected by
341 XTI, \fBt_snd()\fR fails with \fBTBADDATA\fR.