lazy_socket/raw/
mod.rs

1//! Raw module.
2//!
3//! Core part that exposes Raw Socket.
4#[cfg(unix)]
5mod unix;
6#[cfg(unix)]
7pub use self::unix::*;
8
9#[cfg(windows)]
10mod windows;
11#[cfg(windows)]
12pub use self::windows::*;