sendfd - send a file descriptor to a local socket peer
## Synopsis
```**c++
#include <sys/socket.h>
int sendfd(int sockfd, int fd);
```
## Description
Send an open file descriptor to a local socket peer connected via `sockfd`. This is a non-blocking call that will fail if there are too many file descriptors already waiting to be received by the peer.
File descriptors are sent out-of-band and do not affect the regular data streams.