32 releases (19 breaking)

0.19.4 Dec 30, 2023
0.19.3 Jun 28, 2023
0.19.2 Apr 6, 2023
0.19.1 Mar 29, 2023
0.6.1 Mar 4, 2021

#210 in Rust patterns

Download history 331/week @ 2023-11-25 510/week @ 2023-12-02 415/week @ 2023-12-09 382/week @ 2023-12-16 249/week @ 2023-12-23 199/week @ 2023-12-30 549/week @ 2024-01-06 283/week @ 2024-01-13 301/week @ 2024-01-20 202/week @ 2024-01-27 146/week @ 2024-02-03 332/week @ 2024-02-10 372/week @ 2024-02-17 378/week @ 2024-02-24 284/week @ 2024-03-02 163/week @ 2024-03-09

1,223 downloads per month
Used in 9 crates (5 directly)

Apache-2.0…

47KB
1K SLoC

socketpair

Cross-platform socketpair functionality

Github Actions CI Status crates.io page docs.rs docs

This crate wraps socketpair with AF_UNIX platforms, and emulates this interface using CreateNamedPipe on Windows.

It has a "stream" interface, which corresponds to SOCK_STREAM and PIPE_TYPE_BYTE, and a "seqpacket" interface, which corresponds to SOCK_SEQPACKET and PIPE_TYPE_MESSAGE.

Example

let (mut a, mut b) = socketpair_stream()?;

writeln!(a, "hello world")?;

let mut buf = [0_u8; 4096];
let n = b.read(&mut buf)?;
assert_eq!(str::from_utf8(&buf[..n]).unwrap(), "hello world\n");

Support for async-std and tokio is temporarily disabled until those crates contain the needed implementations of the I/O safety traits.

Dependencies

~2–16MB
~184K SLoC