package yurt

  1. Overview
  2. Docs
include module type of struct include Cohttp.Cookie.Set_cookie_hdr end
type t = Cohttp.Cookie.Set_cookie_hdr.t = {
  1. cookie : Cohttp.Cookie.cookie;
  2. expiration : Cohttp.Cookie.expiration;
  3. domain : string option;
  4. path : string option;
  5. secure : bool;
  6. http_only : bool;
}

A header which a server sends to a client to request that the client returns the cookie in future requests, under certain conditions.

include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val make : ?expiration:Cohttp.Cookie.expiration -> ?path:string -> ?domain:string -> ?secure:bool -> ?http_only:bool -> Cohttp.Cookie.cookie -> t
val serialize : ?version:[ `HTTP_1_0 | `HTTP_1_1 ] -> t -> string * string

Return an HTTP header

val extract : Cohttp.Header.t -> (string * t) list

Return the list of cookies sent by the server

The name-value binding

val value : t -> string

The value

val expiration : t -> Cohttp.Cookie.expiration

The expiration

val domain : t -> string option

The domain for which the cookie is valid, if any

val path : t -> string option

The path for which the cookie is valid, if any

val secure : t -> bool

Has the cookie's secure attribute been set?

val http_only : t -> bool