compio-net 0.12.0

Networking IO for compio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
cfg_select! {
    windows => {
        #[path = "windows.rs"]
        mod sys;
    }
    unix => {
        #[path = "unix.rs"]
        mod sys;
    }
    _ => {}
}

pub use sys::*;