Module S.Cookie
Cookies management.
type same_site
=[
|
`Lax
|
`Strict
|
`Undef
]
type t
=
{
name : string;
value : string;
path : string;
domain : string option;
secure : bool;
http_only : bool;
expiry : int;
same_site : same_site;
}
val make : ?path:string -> ?domain:string -> ?secure:bool -> ?http_only:bool -> ?expiry:int -> ?same_site:same_site -> name:string -> value:string -> unit -> t
A helper function to create a new cookie with some optional parameters. The resulting cookie will not be set in the browser ands needs to be
add
ed.