package tcpip

  1. Overview
  2. Docs
type t = {
  1. src : Ipaddr.V4.t;
  2. dst : Ipaddr.V4.t;
  3. id : Cstruct.uint16;
  4. off : Cstruct.uint16;
  5. ttl : Cstruct.uint8;
  6. proto : Cstruct.uint8;
  7. options : Cstruct.t;
}
val pp : Format.formatter -> t -> unit
val equal : t -> t -> bool
type protocol = [
  1. | `ICMP
  2. | `TCP
  3. | `UDP
]
module Unmarshal : sig ... end
module Marshal : sig ... end