xref: /freebsd/lib/libsys/sctp_generic_sendmsg.2 (revision 8269e7673cf033aba67dab8264fe719920c70f87)
1*8269e767SBrooks Davis.\" Copyright (c) 1983, 1991, 1993
2*8269e767SBrooks Davis.\"	The Regents of the University of California.  All rights reserved.
3*8269e767SBrooks Davis.\"
4*8269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without
5*8269e767SBrooks Davis.\" modification, are permitted provided that the following conditions
6*8269e767SBrooks Davis.\" are met:
7*8269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright
8*8269e767SBrooks Davis.\"    notice, this list of conditions and the following disclaimer.
9*8269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright
10*8269e767SBrooks Davis.\"    notice, this list of conditions and the following disclaimer in the
11*8269e767SBrooks Davis.\"    documentation and/or other materials provided with the distribution.
12*8269e767SBrooks Davis.\" 3. Neither the name of the University nor the names of its contributors
13*8269e767SBrooks Davis.\"    may be used to endorse or promote products derived from this software
14*8269e767SBrooks Davis.\"    without specific prior written permission.
15*8269e767SBrooks Davis.\"
16*8269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17*8269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18*8269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19*8269e767SBrooks Davis.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20*8269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21*8269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22*8269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23*8269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24*8269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25*8269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26*8269e767SBrooks Davis.\" SUCH DAMAGE.
27*8269e767SBrooks Davis.\"
28*8269e767SBrooks Davis.Dd October 30, 2007
29*8269e767SBrooks Davis.Dt SCTP_GENERIC_SENDMSG 2
30*8269e767SBrooks Davis.Os
31*8269e767SBrooks Davis.Sh NAME
32*8269e767SBrooks Davis.Nm sctp_generic_sendmsg ,
33*8269e767SBrooks Davis.Nm sctp_generic_sendmsg_iov
34*8269e767SBrooks Davis.Nd send data to a peer
35*8269e767SBrooks Davis.Sh LIBRARY
36*8269e767SBrooks Davis.Lb libc
37*8269e767SBrooks Davis.Sh SYNOPSIS
38*8269e767SBrooks Davis.In sys/types.h
39*8269e767SBrooks Davis.In sys/socket.h
40*8269e767SBrooks Davis.In netinet/sctp.h
41*8269e767SBrooks Davis.Ft int
42*8269e767SBrooks Davis.Fn sctp_generic_sendmsg "int s" "void *msg" "int msglen" "struct sockaddr *to" "socklen_t len" "struct sctp_sndrcvinfo *sinfo" "int flags"
43*8269e767SBrooks Davis.Ft int
44*8269e767SBrooks Davis.Fn sctp_generic_sendmsg_iov "int s" "struct iovec *iov" "int iovlen" "struct sockaddr *to" "struct sctp_sndrcvinfo *sinfo" "int flags"
45*8269e767SBrooks Davis.Sh DESCRIPTION
46*8269e767SBrooks Davis.Fn sctp_generic_sendmsg
47*8269e767SBrooks Davisand
48*8269e767SBrooks Davis.Fn sctp_generic_sendmsg_iov
49*8269e767SBrooks Davisare the true system calls used by the
50*8269e767SBrooks Davis.Xr sctp_sendmsg 3
51*8269e767SBrooks Davisand
52*8269e767SBrooks Davis.Xr sctp_send 3
53*8269e767SBrooks Davisfunction calls.
54*8269e767SBrooks DavisThese are more efficient since they are
55*8269e767SBrooks Davistrue system calls but they are specific to
56*8269e767SBrooks Davis.Fx
57*8269e767SBrooks Davisand can be expected
58*8269e767SBrooks Davis.Em not
59*8269e767SBrooks Davisto be present on any other operating
60*8269e767SBrooks Davissystem.
61*8269e767SBrooks DavisFor detailed usage please see either the
62*8269e767SBrooks Davis.Xr sctp_send 3
63*8269e767SBrooks Davisor
64*8269e767SBrooks Davis.Xr sctp_sendmsg 3
65*8269e767SBrooks Davisfunction calls.
66*8269e767SBrooks Davis.Sh RETURN VALUES
67*8269e767SBrooks DavisThe call returns the number of bytes written on success and -1 upon failure.
68*8269e767SBrooks Davis.Sh ERRORS
69*8269e767SBrooks Davis.Bl -tag -width Er
70*8269e767SBrooks Davis.It Bq Er EBADF
71*8269e767SBrooks DavisThe argument
72*8269e767SBrooks Davis.Fa s
73*8269e767SBrooks Davisis not a valid descriptor.
74*8269e767SBrooks Davis.It Bq Er ENOTSOCK
75*8269e767SBrooks DavisThe argument
76*8269e767SBrooks Davis.Fa s
77*8269e767SBrooks Davisis not a socket.
78*8269e767SBrooks Davis.El
79*8269e767SBrooks Davis.Sh SEE ALSO
80*8269e767SBrooks Davis.Xr sctp_send 3 ,
81*8269e767SBrooks Davis.Xr sctp_sendmsg 3 ,
82*8269e767SBrooks Davis.Xr sctp_sendmsgx 3 ,
83*8269e767SBrooks Davis.Xr sctp_sendx 3 ,
84*8269e767SBrooks Davis.Xr sctp 4
85