package mirage-nat

  1. Overview
  2. Docs
type port = Cstruct.uint16
type endpoint = Ipaddr.V4.t * port
type error = [
  1. | `Overlap
  2. | `Cannot_NAT
  3. | `Untranslated
  4. | `TTL_exceeded
]
val pp_error : [< error ] Fmt.t
type ports = {
  1. tcp : port list;
  2. udp : port list;
  3. icmp : port list;
}
module type S = sig ... end
module type SUBTABLE = sig ... end
module type TABLE = sig ... end