Module H2.Settings

type t = {
header_table_size : int;
enable_push : bool;
max_concurrent_streams : int;
initial_window_size : int;
max_frame_size : int;
max_header_list_size : int option;
}
val default : t
val of_base64 : string -> (t, string) Stdlib.result

RFC7540§3.2.1

val to_base64 : t -> (string, string) Stdlib.result

RFC7540§3.2.1

val pp_hum : Stdlib.Format.formatter -> t -> unit