Skip to main content

uds_windows/
lib.rs

1//! Unix domain sockets for Windows
2
3#[cfg(windows)]
4mod stdnet;
5
6#[cfg(windows)]
7pub use crate::stdnet::{
8    from_path, AcceptAddrs, AcceptAddrsBuf, SocketAddr, UnixListener, UnixListenerExt, UnixStream,
9    UnixStreamExt,
10};