blob: cff06315d639098438526624bcf2e4afcfe61a89 [file] [log] [blame]
#[cfg(unix)]
pub use self::unix::{
Awakener,
EventedFd,
Events,
Io,
Selector,
TcpStream,
TcpListener,
UdpSocket,
pipe,
set_nonblock,
};
#[cfg(unix)]
#[cfg(feature = "with-deprecated")]
pub use self::unix::UnixSocket;
#[cfg(unix)]
pub mod unix;
#[cfg(windows)]
pub use self::windows::{
Awakener,
Events,
Selector,
TcpStream,
TcpListener,
UdpSocket,
Overlapped,
Binding,
};
#[cfg(windows)]
mod windows;