package h2

  1. Overview
  2. Docs
type t = {
  1. header_table_size : int;
  2. enable_push : bool;
  3. max_concurrent_streams : int32;
  4. initial_window_size : int32;
  5. max_frame_size : int;
  6. max_header_list_size : int option;
}
val default : t
val of_base64 : string -> (t, string) Stdlib.result
val to_base64 : t -> (string, string) Stdlib.result
val pp_hum : Stdlib.Format.formatter -> t -> unit