dream-httpaf.dream-h2
Dream_h2.Frame
dream-httpaf
dream-httpaf.dream-gluten
dream-httpaf.dream-gluten-lwt
dream-httpaf.dream-gluten-lwt-unix
dream-httpaf.dream-h2-lwt
dream-httpaf.dream-h2-lwt-unix
dream-httpaf.dream-hpack
dream-httpaf.dream-httpaf_
dream-httpaf.dream-httpaf_-lwt
dream-httpaf.dream-httpaf_-lwt-unix
dream-httpaf.dream-websocketaf
dream-httpaf.dream-websocketaf-lwt
dream-httpaf.dream-websocketaf-lwt-unix
val connection_preface : string
module FrameType : sig ... end
type frame_header = {
payload_length : int;
flags : Flags.t;
stream_id : Stream_identifier.t;
frame_type : FrameType.t;
}
type frame_payload =
| Data of Bigstringaf.t
| Headers of Priority.t * Bigstringaf.t
| Priority of Priority.t
| RSTStream of Error_code.t
| Settings of Settings.settings_list
| PushPromise of Stream_identifier.t * Bigstringaf.t
| Ping of Bigstringaf.t
| GoAway of Stream_identifier.t * Error_code.t * Bigstringaf.t
| WindowUpdate of Settings.WindowSize.t
| Continuation of Bigstringaf.t
| Unknown of int * Bigstringaf.t
type t = {
frame_header : frame_header;
frame_payload : frame_payload;