Expand description
Context-aware network utilities.
Built on top of tokio::net
.
Modules§
- Context-aware utilities for
tokio::net::tcp
. Note thataccept()
andconnect()
disable Nagle algorithm (so that the transmission latency is more predictable), so the caller is expected to apply user space buffering.
Structs§
- Network host address in the format “<domain/ip>:
”. NOT VALIDATED, validation happens at Host::resolve()
call.