distant-net 0.20.0

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
mod tcp;

#[cfg(unix)]
mod unix;

#[cfg(windows)]
mod windows;

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