blob: 771bd9ae59d3624fb6884076a9e8072fd4bd80bf [file] [log] [blame]
rsc058b0112005-01-03 06:40:20 +00001.TH SENDFD 3
2.SH NAME
3sendfd, recvfd \- pass file descriptors along Unix domain sockets
4.SH SYNOPSIS
5.B
6#include <u.h>
7.PP
8.B
9#include <libc.h>
10.PP
11.B
12int sendfd(int socket, int fd)
13.PP
14.B
15int recvfd(int socket)
16.SH DESCRIPTION
17.I Recvfd
18and
19.I sendfd
20can be used to pass an open file descriptor over
21a Unix domain socket from one process to another.
22Since
23.IR pipe (3)
24is implemented with
25.IR socketpair (2)
26instead of
27.IR pipe (2),
28.I socket
29can be a file descriptor obtained from
30.IR pipe (3).
31.PP
32.I Sendfd
33sends the file descriptor
34.I fd
35along the socket to a process calling
36.I recvfd
37on the other end.
38.PP
39It is assumed that the two sides have coordinated
40and agreed to transfer a file descriptor already, so
41that the
42.I sendfd
43is met with a
44.I recvfd
45instead of an ordinary
46.IR read .
47.PP
48The file descriptor number may change on its way
49between processes, but the kernel structure it represents
50will not.
51.SH SOURCE
rscc3674de2005-01-11 17:37:33 +000052.B \*9/src/lib9/sendfd.c
rsc058b0112005-01-03 06:40:20 +000053.SH SEE ALSO
54.IR socketpair (2),
55.I sendmsg
56in
57.IR send (2)