Module tokio_uring::net

source ·
Expand description

TCP/UDP bindings for tokio-uring.

This module contains the TCP/UDP networking types, similar to the standard library, which can be used to implement networking protocols.

Organization

Structs

  • A TCP socket server, listening for connections.
  • A TCP stream between a local and a remote socket.
  • A UDP socket.
  • A Unix socket server, listening for connections.
  • A Unix stream between two local sockets on a Unix OS.