From adc93f6097615f16d57e8a24a256302f2144ec4e Mon Sep 17 00:00:00 2001 From: rsc Date: Fri, 14 Jan 2005 17:37:50 +0000 Subject: cut out the html - they're going to cause diffing problems. --- man/man3/sendfd.html | 85 ---------------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 man/man3/sendfd.html (limited to 'man/man3/sendfd.html') diff --git a/man/man3/sendfd.html b/man/man3/sendfd.html deleted file mode 100644 index 37007603..00000000 --- a/man/man3/sendfd.html +++ /dev/null @@ -1,85 +0,0 @@ - -sendfd(3) - Plan 9 from User Space - - - - -
-
-
SENDFD(3)SENDFD(3) -
-
-

NAME
- -
- - sendfd, recvfd – pass file descriptors along Unix domain sockets
- -
-

SYNOPSIS
- -
- - #include <u.h> -
-
- #include <libc.h> -
-
- int    sendfd(int socket, int fd) -
-
- int    recvfd(int socket)
-
-
-

DESCRIPTION
- -
- - Recvfd and sendfd can be used to pass an open file descriptor - over a Unix domain socket from one process to another. Since pipe(3) - is implemented with socketpair(2) instead of pipe(2), socket can - be a file descriptor obtained from pipe(3). -
- - Sendfd sends the file descriptor fd along the socket to a process - calling recvfd on the other end. -
- - It is assumed that the two sides have coordinated and agreed to - transfer a file descriptor already, so that the sendfd is met - with a recvfd instead of an ordinary read. -
- - The file descriptor number may change on its way between processes, - but the kernel structure it represents will not.
- -
-

SOURCE
- -
- - /usr/local/plan9/src/lib9/sendfd.c
-
-
-

SEE ALSO
- -
- - socketpair(2), sendmsg in send(2)
- -
- -

-
-
- - -
-
-
-Space Glenda -
-
- - -- cgit v1.2.3