]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/socketpair.2
wfix
[thirdparty/man-pages.git] / man2 / socketpair.2
CommitLineData
fea681da
MK
1.\" Copyright (c) 1983, 1991 The Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)socketpair.2 6.4 (Berkeley) 3/10/91
33.\"
34.\" Modified 1993-07-24 by Rik Faith <faith@cs.unc.edu>
35.\" Modified 1996-10-22 by Eric S. Raymond <esr@thyrsus.com>
305a0578
MK
36.\" Modified 2002-07-22 by Michael Kerrisk <mtk-manpages@gmx.net>
37.\" Modified 2004-06-17 by Michael Kerrisk <mtk-manpages@gmx.net>
fea681da 38.\"
d9343c5c 39.TH SOCKETPAIR 2 2004-06-17 "Linux" "Linux Programmer's Manual"
fea681da
MK
40.SH NAME
41socketpair \- create a pair of connected sockets
42.SH SYNOPSIS
43.B #include <sys/types.h>
44.br
45.B #include <sys/socket.h>
46.sp
47.BI "int socketpair(int " d ", int " type ", int " protocol ", int " sv [2]);
48.SH DESCRIPTION
49The
31e9a9ec 50.BR socketpair ()
fea681da
MK
51call creates an unnamed pair of connected sockets in
52the specified domain
53.IR d ,
54of the specified
55.IR type ,
56and using the optionally specified
57.IR protocol .
58The descriptors used in referencing the new sockets are returned in
59.IR sv [0]
60and
61.IR sv [1].
62The two sockets are indistinguishable.
63.SH "RETURN VALUE"
c13182ef
MK
64On success, zero is returned.
65On error, \-1 is returned, and
fea681da
MK
66.I errno
67is set appropriately.
68.SH ERRORS
69.TP
70.B EAFNOSUPPORT
71The specified address family is not supported on this machine.
72.TP
73.B EFAULT
74The address
75.I sv
76does not specify a valid part of the process address space.
77.TP
78.B EMFILE
79Too many descriptors are in use by this process.
80.TP
81.B ENFILE
82The system limit on the total number of open files has been reached.
83.TP
84.B EOPNOTSUPP
85The specified protocol does not support creation of socket pairs.
86.TP
87.B EPROTONOSUPPORT
88The specified protocol is not supported on this machine.
89.SH "CONFORMING TO"
97c1eac8 904.4BSD, POSIX.1-2001.
fea681da 91The
e511ffb6 92.BR socketpair ()
1c44bd5b
MK
93function call appeared in 4.2BSD.
94It is generally portable to/from
fea681da
MK
95non-BSD systems supporting clones of the BSD socket layer (including
96System V variants).
97.SH NOTES
c13182ef 98On Linux, the only supported domain for this call is
fea681da
MK
99.BR AF_UNIX
100(or synonymously,
101.BR AF_LOCAL ).
102(Most implementations have the same restriction.)
103.SH "SEE ALSO"
104.BR pipe (2),
105.BR read (2),
106.BR socket (2),
107.BR write (2),
108.BR unix (7)