package dream-httpaf

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val connection_preface : string
module FrameType : sig ... end
type frame_header = {
  1. payload_length : int;
  2. flags : Flags.t;
  3. stream_id : Stream_identifier.t;
  4. frame_type : FrameType.t;
}
type frame_payload =
  1. | Data of Bigstringaf.t
  2. | Headers of Priority.t * Bigstringaf.t
  3. | Priority of Priority.t
  4. | RSTStream of Error_code.t
  5. | Settings of Settings.settings_list
  6. | PushPromise of Stream_identifier.t * Bigstringaf.t
  7. | Ping of Bigstringaf.t
  8. | GoAway of Stream_identifier.t * Error_code.t * Bigstringaf.t
  9. | WindowUpdate of Settings.WindowSize.t
  10. | Continuation of Bigstringaf.t
  11. | Unknown of int * Bigstringaf.t
type t = {
  1. frame_header : frame_header;
  2. frame_payload : frame_payload;
}
OCaml

Innovation. Community. Security.