Tcp.Tcp_packet
type t = {
urg : bool;
ack : bool;
psh : bool;
rst : bool;
syn : bool;
fin : bool;
window : Cstruct.uint16;
options : Options.t list;
sequence : Sequence.t;
ack_number : Sequence.t;
src_port : Cstruct.uint16;
dst_port : Cstruct.uint16;
}
val pp : Stdlib.Format.formatter -> t -> unit
module Unmarshal : sig ... end
module Marshal : sig ... end