Module H2.Settings

type key =
| HeaderTableSize
| EnablePush
| MaxConcurrentStreams
| InitialWindowSize
| MaxFrameSize
| MaxHeaderListSize
type value = int
type settings_list = (key * value) list
val of_base64 : string -> (settings_list, string) Stdlib.result

RFC7540§3.2.1

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

RFC7540§3.2.1

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