package tcpip

  1. Overview
  2. Docs

TCP Statistics

type t = {
  1. mutable tcp_listens : int;
  2. mutable tcp_channels : int;
  3. mutable tcp_connects : int;
  4. mutable tcp_timers : int;
  5. mutable total_established : int;
  6. mutable total_passive_connections : int;
  7. mutable total_active_connections : int;
  8. mutable total_timers : int;
}
val pp : Stdlib.Format.formatter -> t -> unit
val incr_listen : unit -> unit
val decr_listen : unit -> unit
val incr_channel : unit -> unit
val decr_channel : unit -> unit
val incr_connect : unit -> unit
val decr_connect : unit -> unit
val incr_timer : unit -> unit
val decr_timer : unit -> unit
val singleton : t
module Gc : sig ... end

Show GC stats