1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1983, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 05:00:24 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)socketpair.2 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2015-05-04 14:23:31 +00:00
|
|
|
.Dd May 4, 2015
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt SOCKETPAIR 2
|
2001-07-10 13:41:46 +00:00
|
|
|
.Os
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm socketpair
|
|
|
|
.Nd create a pair of connected sockets
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In sys/types.h
|
|
|
|
.In sys/socket.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2015-05-04 14:23:31 +00:00
|
|
|
.Fn socketpair "int domain" "int type" "int protocol" "int *sv"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn socketpair
|
2002-12-18 09:22:32 +00:00
|
|
|
system call creates an unnamed pair of connected sockets in
|
2015-05-04 14:23:31 +00:00
|
|
|
the specified communications
|
|
|
|
.Fa domain ,
|
1994-05-27 05:00:24 +00:00
|
|
|
of the specified
|
|
|
|
.Fa type ,
|
|
|
|
and using the optionally specified
|
|
|
|
.Fa protocol .
|
|
|
|
The descriptors used in referencing the new sockets
|
|
|
|
are returned in
|
|
|
|
.Fa sv Ns [0]
|
|
|
|
and
|
|
|
|
.Fa sv Ns [1] .
|
|
|
|
The two sockets are indistinguishable.
|
2013-03-19 20:58:17 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Dv SOCK_CLOEXEC
|
|
|
|
and
|
|
|
|
.Dv SOCK_NONBLOCK
|
|
|
|
flags in the
|
|
|
|
.Fa type
|
|
|
|
argument apply to both descriptors.
|
1997-01-12 00:09:02 +00:00
|
|
|
.Sh RETURN VALUES
|
2001-08-09 13:32:13 +00:00
|
|
|
.Rv -std socketpair
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh ERRORS
|
|
|
|
The call succeeds unless:
|
2000-05-04 13:09:25 +00:00
|
|
|
.Bl -tag -width Er
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Bq Er EMFILE
|
|
|
|
Too many descriptors are in use by this process.
|
|
|
|
.It Bq Er EAFNOSUPPORT
|
|
|
|
The specified address family is not supported on this machine.
|
|
|
|
.It Bq Er EPROTONOSUPPORT
|
|
|
|
The specified protocol is not supported on this machine.
|
2000-11-22 16:02:00 +00:00
|
|
|
.It Bq Er EOPNOTSUPP
|
1994-05-27 05:00:24 +00:00
|
|
|
The specified protocol does not support creation of socket pairs.
|
|
|
|
.It Bq Er EFAULT
|
|
|
|
The address
|
|
|
|
.Fa sv
|
|
|
|
does not specify a valid part of the
|
|
|
|
process address space.
|
2000-12-29 14:08:20 +00:00
|
|
|
.El
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SEE ALSO
|
1997-01-20 23:23:22 +00:00
|
|
|
.Xr pipe 2 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Xr read 2 ,
|
2013-03-19 20:58:17 +00:00
|
|
|
.Xr socket 2 ,
|
1997-01-20 23:23:22 +00:00
|
|
|
.Xr write 2
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
1996-08-22 23:31:07 +00:00
|
|
|
.Fn socketpair
|
2002-12-18 09:22:32 +00:00
|
|
|
system call appeared in
|
1994-05-27 05:00:24 +00:00
|
|
|
.Bx 4.2 .
|
2005-01-20 09:17:07 +00:00
|
|
|
.Sh BUGS
|
|
|
|
This call is currently implemented only for the
|
|
|
|
.Ux
|
|
|
|
domain.
|