1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Unix domain sockets for Windows

#[cfg(windows)]
extern crate winapi;

#[cfg(windows)]
extern crate tempdir;

#[cfg(windows)]
mod stdnet;

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