atap 0.1.0

Threadsafe futureless async runtime for macOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Net
//! What the socket families share: addresses, making sockets,
//! the step state every socket task keeps, and the send and
//! receive tasks a byte stream hands out

pub mod address;
pub(crate) mod datagram;
pub(crate) mod exchange;
pub(crate) mod socket;
pub(crate) mod step;
pub mod stream;

pub use address::NetAddress;
pub use stream::{FinishTask, RecvTask, SendTask};