uds_windows 1.2.1

Unix Domain Sockets for Windows!
Documentation
1
2
3
4
5
6
7
8
9
10
//! Unix domain sockets for Windows

#[cfg(windows)]
mod stdnet;

#[cfg(windows)]
pub use crate::stdnet::{
    from_path, AcceptAddrs, AcceptAddrsBuf, SocketAddr, UnixListener, UnixListenerExt, UnixStream,
    UnixStreamExt,
};