Module mz_ore::netio

source ·
Available on crate feature network only.
Expand description

Network I/O utilities.

Structs§

Enums§

  • A listener bound to either a TCP socket or Unix domain socket.
  • An address associated with an internet or Unix domain socket.
  • The type of a SocketAddr.
  • A stream associated with either a TCP socket or a Unix domain socket.

Constants§

  • The maximum allowable size of a frame in a framed stream.

Traits§

Functions§

  • Creates a future which will read exactly enough bytes to fill buf, unless EOF is reached first. If a short read should be considered an error, use tokio::io::AsyncReadExt::read_exact instead.
  • Resolves a host address and ensures it is a global address when enforce_global is set. This parameter is useful when connecting to user-defined unverified addresses.