mtcp-rs 0.1.11

Provides a “blocking” implementation of TcpListener and TcpStream with proper timeout and cancellation support.
Documentation
1
2
3
4
5
6
7
8
9
/*
 * mtcp - TcpListener/TcpStream *with* timeout/cancellation support
 * This is free and unencumbered software released into the public domain.
 */
mod flag;
mod timeout;

pub(crate) use flag::Flag;
pub(crate) use timeout::Timeout;