package frenetic

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

TCP header flags.

type t = {
  1. ns : bool;
    (*

    ECN-nonce concealment protection.

    *)
  2. cwr : bool;
    (*

    Congestion window reduced.

    *)
  3. ece : bool;
    (*

    ECN-Echo.

    *)
  4. urg : bool;
    (*

    Indicates the Urgent pointer field is significant.

    *)
  5. ack : bool;
    (*

    Indicates that the Acknowledgment field is significant.

    *)
  6. psh : bool;
    (*

    Asks to push the buffered data to the receiving application.

    *)
  7. rst : bool;
    (*

    Reset the connection.

    *)
  8. syn : bool;
    (*

    Synchronize sequence numbers.

    *)
  9. fin : bool;
    (*

    No more data from sender.

    *)
}
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t