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 -> bool
val marshal : Cstruct.t -> t list -> int
val unmarshal : Cstruct.t -> (t list, string) Stdlib.result
val pp : Stdlib.Format.formatter -> t -> unit
val pps : Stdlib.Format.formatter -> t list -> unit