compio-net 0.12.0-rc.1

Networking IO for compio
Documentation
1
2
3
4
5
6
7
8
9
10
11
cfg_if::cfg_if! {
    if #[cfg(windows)] {
        #[path = "windows.rs"]
        mod sys;
    } else if #[cfg(unix)] {
        #[path = "unix.rs"]
        mod sys;
    }
}

pub use sys::*;