package tcpip

  1. Overview
  2. Docs
type error = [
  1. | `Timeout
  2. | `Refused
]
type write_error = [
  1. | error
  2. | Mirage_flow.write_error
]
val pp_error : error Fmt.t
val pp_write_error : write_error Fmt.t
module Keepalive : sig ... end

Configuration for TCP keep-alives. Keep-alive messages are probes sent on an idle connection. If no traffic is received after a certain number of probes are sent, then the connection is assumed to have been lost.

module type S = sig ... end

Transmission Control Protocol layer: reliable ordered streaming communication.