package piaf

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