You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
633 B
Groff
20 lines
633 B
Groff
21 years ago
|
.TH io_passfd 3
|
||
|
.SH NAME
|
||
|
io_passfd \- pass a file descriptor over a Unix Domain socket
|
||
|
.SH SYNTAX
|
||
|
.B #include <io.h>
|
||
|
|
||
|
int \fBio_passfd\fP(int64 sock,int64 fd);
|
||
|
.SH DESCRIPTION
|
||
|
io_passfd transfers the file descriptor \fIfd\fR over the Unix Domain
|
||
|
socket \fIsock\fR. This works much like dup(2), only that the copy of
|
||
|
the descriptor appears not in this process but at the other end of the
|
||
|
Unix Domain socket (which therefore must be a process on the same
|
||
|
system).
|
||
|
|
||
|
The peer can then use io_receivefd(3) to receive the file descriptor.
|
||
|
|
||
|
Note that the passed descriptor stays open in the sending process.
|
||
|
.SH "SEE ALSO"
|
||
|
io_receivefd(3)
|