1(** HTTP version. *) 2 3type t = 4 | Http_1_0 5 | Http_1_1 6 7(** Convert to string representation. *) 8val to_string : t -> string 9 10(** Pretty-print version. *) 11val pp : Stdlib.Format.formatter -> t -> unit