package tcpip

  1. Overview
  2. Docs
type t = {
  1. urg : bool;
  2. ack : bool;
  3. psh : bool;
  4. rst : bool;
  5. syn : bool;
  6. fin : bool;
  7. window : Cstruct.uint16;
  8. options : Options.t list;
  9. sequence : Sequence.t;
  10. ack_number : Sequence.t;
  11. src_port : Cstruct.uint16;
  12. dst_port : Cstruct.uint16;
}
val pp : Format.formatter -> t -> unit
val equal : t -> t -> bool
module Unmarshal : sig ... end
module Marshal : sig ... end