Registry / networking / sendfd

sendfd

JSON →
library0.4.4rscratesunverified

Send file descriptors along with data over UNIX domain sockets.

# Cargo.toml [dependencies] sendfd = "0.4.4"
INSTALL
IMPORT
SIG · SENDFD
S
sendfd
networkingrustv0.4.4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

send_fd
use sendfd::send_fd;

Sends a file descriptor over a Unix domain socket.

use sendfd::send_fd; use std::os::unix::net::UnixStream; fn main() -> std::io::Result<()> { let (stream, _) = UnixStream::pair()?; let fd = 3; // example fd send_fd(&stream, fd)?; Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.4.4latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
OpenAI (training)
1
Resources
sendfd — cargo add sendfd · libregistry