9103 opengroup acknowledgement should be properly formatted in man pages
[unleashed.git] / usr / src / man / man3xnet / sendmsg.3xnet
bloba5c9298bf848193231b36358d0f3e5278c1b7999
1 .\"
2 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for
3 .\" permission to reproduce portions of its copyrighted documentation.
4 .\" Original documentation from The Open Group can be obtained online at
5 .\" http://www.opengroup.org/bookstore/.
6 .\"
7 .\" The Institute of Electrical and Electronics Engineers and The Open
8 .\" Group, have given us permission to reprint portions of their
9 .\" documentation.
10 .\"
11 .\" In the following statement, the phrase ``this text'' refers to portions
12 .\" of the system documentation.
13 .\"
14 .\" Portions of this text are reprinted and reproduced in electronic form
15 .\" in the SunOS Reference Manual, from IEEE Std 1003.1, 2004 Edition,
16 .\" Standard for Information Technology -- Portable Operating System
17 .\" Interface (POSIX), The Open Group Base Specifications Issue 6,
18 .\" Copyright (C) 2001-2004 by the Institute of Electrical and Electronics
19 .\" Engineers, Inc and The Open Group.  In the event of any discrepancy
20 .\" between these versions and the original IEEE and The Open Group
21 .\" Standard, the original IEEE and The Open Group Standard is the referee
22 .\" document.  The original Standard can be obtained online at
23 .\" http://www.opengroup.org/unix/online.html.
24 .\"
25 .\" This notice shall appear on any product containing this material.
26 .\"
27 .\" The contents of this file are subject to the terms of the
28 .\" Common Development and Distribution License (the "License").
29 .\" You may not use this file except in compliance with the License.
30 .\"
31 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
32 .\" or http://www.opensolaris.org/os/licensing.
33 .\" See the License for the specific language governing permissions
34 .\" and limitations under the License.
35 .\"
36 .\" When distributing Covered Code, include this CDDL HEADER in each
37 .\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
38 .\" If applicable, add the following below this CDDL HEADER, with the
39 .\" fields enclosed by brackets "[]" replaced with your own identifying
40 .\" information: Portions Copyright [yyyy] [name of copyright owner]
41 .\"
42 .\"
43 .\" Copyright (c) 1992, X/Open Company Limited.  All Rights Reserved.
44 .\" Portions Copyright (c) 2003, Sun Microsystems, Inc.  All Rights Reserved.
45 .\"
46 .TH SENDMSG 3XNET "Nov 1, 2003"
47 .SH NAME
48 sendmsg \- send a message on a socket using a message structure
49 .SH SYNOPSIS
50 .LP
51 .nf
52 \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lxnet\fR [ \fIlibrary\fR ... ]
53 #include <sys/socket.h>
55 \fBssize_t\fR \fBsendmsg\fR(\fBint\fR \fIsocket\fR, \fBconst struct msghdr *\fR\fImessage\fR, \fBint\fR \fIflags\fR);
56 .fi
58 .SH PARAMETERS
59 .sp
60 .LP
61 The function takes the following arguments:
62 .sp
63 .ne 2
64 .na
65 \fB\fIsocket\fR\fR
66 .ad
67 .RS 11n
68 Specifies the socket file descriptor.
69 .RE
71 .sp
72 .ne 2
73 .na
74 \fB\fImessage\fR\fR
75 .ad
76 .RS 11n
77 Points to a \fBmsghdr\fR structure, containing both the destination address and
78 the buffers for the outgoing message. The length and format of the address
79 depend on the address family of the socket.  The \fBmsg_flags\fR member is
80 ignored.
81 .RE
83 .sp
84 .ne 2
85 .na
86 \fB\fIflags\fR\fR
87 .ad
88 .RS 11n
89 Specifies the type of message transmission. The application may specify 0 or
90 the following flag:
91 .sp
92 .ne 2
93 .na
94 \fBMSG_EOR\fR
95 .ad
96 .RS 11n
97 Terminates a record (if supported by the protocol)
98 .RE
101 .ne 2
103 \fBMSG_OOB\fR
105 .RS 11n
106 Sends out-of-band data on sockets that support out-of-bound data. The
107 significance and semantics of out-of-band data are protocol-specific.
112 .SH DESCRIPTION
115 The \fBsendmsg()\fR function sends a message through a connection-mode or
116 connectionless-mode socket.  If the socket is connectionless-mode, the message
117 will be sent to the address specified by \fImsghdr\fR.  If the socket is
118 connection-mode, the destination address in \fImsghdr\fR is ignored.
121 The  \fImsg_iov\fR and  \fImsg_iovlen\fR fields of message specify zero or more
122 buffers containing the data to be sent. \fImsg_iov\fR points to an array of
123 \fBiovec\fR structures;  \fImsg_iovlen\fR must be set to the dimension of this
124 array. In each  \fBiovec\fR structure, the  \fIiov_base\fR field specifies  a
125 storage area and the  \fIiov_len\fR field gives its size  in bytes. Some of
126 these sizes can be zero. The data from each storage area indicated by
127 \fImsg_iov\fR is sent in turn.
130 Successful completion of a call to \fBsendmsg()\fR does not guarantee delivery
131 of the message. A return value of \(mi1 indicates only locally-detected errors.
134 If space is not available at the sending socket to hold the message to be
135 transmitted and the socket file descriptor does not have \fBO_NONBLOCK\fR set,
136 \fBsendmsg()\fR function blocks until space is available.  If space is not
137 available at the sending socket to hold the message to be transmitted and the
138 socket file descriptor does have \fBO_NONBLOCK\fR set, \fBsendmsg()\fR function
139 will fail.
142 If the socket protocol supports broadcast and the specified address is a
143 broadcast address for the socket protocol, \fBsendmsg()\fR will fail if the
144 \fBSO_BROADCAST\fR option is not set for the socket.
147 The socket in use may require the process to have appropriate privileges to use
148 the \fBsendmsg()\fR function.
149 .SH USAGE
152 The \fBselect\fR(3C) and \fBpoll\fR(2) functions can be used to determine when
153 it is possible to send more data.
154 .SH RETURN VALUES
157 Upon successful completion, \fBsendmsg()\fR function returns the number of
158 bytes sent.  Otherwise, \(mi1 is returned and \fBerrno\fR is set to indicate
159 the error.
160 .SH ERRORS
163 The \fBsendmsg()\fR function will fail if:
165 .ne 2
167 \fB\fBEAGAIN\fR \fR
171 \fB\fBEWOULDBLOCK\fR\fR
173 .RS 16n
174 The socket's file descriptor is marked O_NONBLOCK and the requested operation
175 would block.
179 .ne 2
181 \fB\fBEAFNOSUPPORT\fR\fR
183 .RS 16n
184 Addresses in the specified address family cannot be used with this socket.
188 .ne 2
190 \fB\fBEBADF\fR\fR
192 .RS 16n
193 The \fIsocket\fR argument is not a valid file descriptor.
197 .ne 2
199 \fB\fBECONNRESET\fR\fR
201 .RS 16n
202 A connection was forcibly closed by a peer.
206 .ne 2
208 \fB\fBEFAULT\fR\fR
210 .RS 16n
211 The  \fImessage\fR parameter, or storage pointed to by the  \fImsg_name\fR,
212 \fImsg_control\fR or  \fImsg_iov\fR fields of the  \fImessage\fR parameter, or
213 storage pointed to by the \fBiovec\fR structures pointed to by the
214 \fImsg_iov\fR field can not be accessed.
218 .ne 2
220 \fB\fBEINTR\fR\fR
222 .RS 16n
223 A signal interrupted \fBsendmsg()\fR before any data was transmitted.
227 .ne 2
229 \fB\fBEINVAL\fR\fR
231 .RS 16n
232 The sum of the \fBiov_len\fR values overflows an \fBssize_t\fR.
236 .ne 2
238 \fB\fBEMSGSIZE\fR\fR
240 .RS 16n
241 The message is to large to be sent all at once (as the socket requires), or the
242 \fBmsg_iovlen\fR member of the \fBmsghdr\fR structure pointed to by
243 \fImessage\fR is less than or equal to 0 or is greater than \fBIOV_MAX\fR.
247 .ne 2
249 \fB\fBENOTCONN\fR\fR
251 .RS 16n
252 The socket is connection-mode but is not connected.
256 .ne 2
258 \fB\fBENOTSOCK\fR\fR
260 .RS 16n
261 The \fIsocket\fR argument does not refer a socket.
265 .ne 2
267 \fB\fBEOPNOTSUPP\fR\fR
269 .RS 16n
270 The \fIsocket\fR argument is associated with a socket that does not support one
271 or more of the values set in \fIflags\fR.
275 .ne 2
277 \fB\fBEPIPE\fR\fR
279 .RS 16n
280 The socket is shut down for writing, or the socket is connection-mode and is no
281 longer connected. In the latter case, and if the socket is of type SOCK_STREAM,
282 the \fBSIGPIPE\fR signal is generated to the calling thread.
287 If the address family of the socket is \fBAF_UNIX\fR, then \fBsendmsg()\fR will
288 fail if:
290 .ne 2
292 \fB\fBEIO\fR\fR
294 .RS 16n
295 An I/O error occurred while reading from or writing to the file system.
299 .ne 2
301 \fB\fBELOOP\fR\fR
303 .RS 16n
304 Too many symbolic links were encountered in translating the pathname in the
305 socket address.
309 .ne 2
311 \fB\fBENAMETOOLONG\fR\fR
313 .RS 16n
314 A component of a pathname exceeded \fINAME_MAX\fR characters, or an entire
315 pathname exceeded \fIPATH_MAX\fR characters.
319 .ne 2
321 \fB\fBENOENT\fR\fR
323 .RS 16n
324 A component of the pathname does not name an existing file or the pathname is
325 an empty string.
329 .ne 2
331 \fB\fBENOTDIR\fR\fR
333 .RS 16n
334 A component of the path prefix of the pathname in the socket address is not a
335 directory.
340 The \fBsendmsg()\fR function may fail if:
342 .ne 2
344 \fB\fBEACCES\fR\fR
346 .RS 16n
347 Search permission is denied for a component of the path prefix; or write access
348 to the named socket is denied.
352 .ne 2
354 \fB\fBEDESTADDRREQ\fR\fR
356 .RS 16n
357 The socket is not connection-mode and does not have its peer address set, and
358 no destination address was specified.
362 .ne 2
364 \fB\fBEHOSTUNREACH\fR\fR
366 .RS 16n
367 The destination host cannot be reached (probably because the host is down or a
368 remote router cannot reach it).
372 .ne 2
374 \fB\fBEIO\fR\fR
376 .RS 16n
377 An I/O error occurred while reading from or writing to the file system.
381 .ne 2
383 \fB\fBEISCONN\fR\fR
385 .RS 16n
386 A destination address was specified and the socket is already connected.
390 .ne 2
392 \fB\fBENETDOWN\fR\fR
394 .RS 16n
395 The local interface used to reach the destination is down.
399 .ne 2
401 \fB\fBENETUNREACH\fR\fR
403 .RS 16n
404 No route to the network is present.
408 .ne 2
410 \fB\fBENOBUFS\fR\fR
412 .RS 16n
413 Insufficient resources were available in the system to perform the operation.
417 .ne 2
419 \fB\fBENOMEM\fR\fR
421 .RS 16n
422 Insufficient memory was available to fulfill the request.
426 .ne 2
428 \fB\fBENOSR\fR\fR
430 .RS 16n
431 There were insufficient STREAMS resources available for the operation to
432 complete.
437 If the address family of the socket is \fBAF_UNIX\fR, then \fBsendmsg()\fR may
438 fail if:
440 .ne 2
442 \fB\fBENAMETOOLONG\fR\fR
444 .RS 16n
445 Pathname resolution of a symbolic link produced an intermediate result whose
446 length exceeds \fIPATH_MAX\fR.
449 .SH ATTRIBUTES
452 See \fBattributes\fR(5) for descriptions of the following attributes:
457 box;
458 c | c
459 l | l .
460 ATTRIBUTE TYPE  ATTRIBUTE VALUE
462 Interface Stability     Standard
464 MT-Level        MT-Safe
467 .SH SEE ALSO
470 \fBpoll\fR(2) \fBgetsockopt\fR(3XNET), \fBrecv\fR(3XNET),
471 \fBrecvfrom\fR(3XNET), \fBrecvmsg\fR(3XNET), \fBselect\fR(3C),
472 \fBsend\fR(3XNET), \fBsendto\fR(3XNET), \fBsetsockopt\fR(3XNET),
473 \fBshutdown\fR(3XNET), \fBsocket\fR(3XNET), \fBattributes\fR(5),
474 \fBstandards\fR(5)