Module Tcp.Options
TCP options parsing
type t = | Noop| MSS of int| Window_size_shift of int| SACK_ok| SACK of (int32 * int32) list| Timestamp of int32 * int32| Unknown of int * string
val equal : t -> t -> boolval marshal : Cstruct.t -> t list -> intval unmarshal : Cstruct.t -> (t list, string) Stdlib.resultval pp : Stdlib.Format.formatter -> t -> unitval pps : Stdlib.Format.formatter -> t list -> unit