package ocamlapi

  1. Overview
  2. Docs
type t = {
  1. headers : Cohttp.Header.t;
    (*

    HTTP request headers

    *)
  2. meth : Cohttp.Code.meth;
    (*

    HTTP request method

    *)
  3. resource : string;
    (*

    Request path and query

    *)
  4. version : Cohttp.Code.version;
    (*

    HTTP version, usually 1.1

    *)
  5. encoding : Cohttp.Transfer.encoding;
    (*

    transfer encoding of this HTTP request

    *)
}
val encoding : t -> Cohttp.Transfer.encoding
val version : t -> Cohttp.Code.version
val resource : t -> string
val meth : t -> Cohttp.Code.meth
val headers : t -> Cohttp.Header.t
module Fields : sig ... end
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val make : ?meth:Cohttp.Code.meth -> ?version:Cohttp.Code.version -> ?encoding:Cohttp.Transfer.encoding -> ?headers:Cohttp.Header.t -> Uri.t -> t

Return true whether the connection should be reused

val is_keep_alive : t -> bool

Return true whether the connection should be reused

val uri : t -> Uri.t
val make_for_client : ?headers:Cohttp.Header.t -> ?chunked:bool -> ?body_length:int64 -> Cohttp.Code.meth -> Uri.t -> t