distant-net 0.20.0-alpha.3

Network library for distant, providing implementations to support client/server architecture
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod tcp;

#[cfg(unix)]
mod unix;

#[cfg(windows)]
mod windows;

pub use tcp::*;

#[cfg(unix)]
pub use unix::*;

#[cfg(windows)]
pub use windows::*;