package piaf

  1. Overview
  2. Docs

Protocol Version

HTTP uses a "<major>.<minor>" numbering scheme to indicate versions of the protocol. The protocol version as a whole indicates the sender's conformance with the set of requirements laid out in that version's corresponding specification of HTTP.

See RFC7230§2.6 for more details.

type t = {
  1. major : int;
    (*

    The major protocol number.

    *)
  2. minor : int;
    (*

    The minor protocol number.

    *)
}
val compare : t -> t -> int
val to_string : t -> string
val of_string : string -> t
val pp_hum : Format.formatter -> t -> unit