OCaml HTTP cookie handling library with support for Eio-based storage jars

odoc

+15 -2
+7 -1
lib/core/cookeio.mli
··· 66 66 Additional standards: 67 67 {ul 68 68 {- {{:https://publicsuffix.org/}Mozilla Public Suffix List} - Registry 69 - of public suffixes for cookie domain validation per RFC 6265 Section 5.3 Step 5}} *) 69 + of public suffixes for cookie domain validation per RFC 6265 Section 5.3 Step 5}} 70 + 71 + {2 Related Libraries} 72 + 73 + {ul 74 + {- [Publicsuffix] - Public Suffix List lookup used for domain validation} 75 + {- [Cookeio_jar] - Cookie jar storage with persistence support}} *) 70 76 71 77 (** {1 Types} *) 72 78
+8 -1
lib/jar/cookeio_jar.mli
··· 35 35 {- Domain matching per {{:https://datatracker.ietf.org/doc/html/rfc6265#section-5.1.3}Section 5.1.3}} 36 36 {- Path matching per {{:https://datatracker.ietf.org/doc/html/rfc6265#section-5.1.4}Section 5.1.4}} 37 37 {- Cookie ordering per {{:https://datatracker.ietf.org/doc/html/rfc6265#section-5.4}Section 5.4 Step 2}} 38 - {- Creation time preservation per {{:https://datatracker.ietf.org/doc/html/rfc6265#section-5.3}Section 5.3 Step 11.3}}} *) 38 + {- Creation time preservation per {{:https://datatracker.ietf.org/doc/html/rfc6265#section-5.3}Section 5.3 Step 11.3}}} 39 + 40 + {2 Related Libraries} 41 + 42 + {ul 43 + {- {!Cookeio} - HTTP cookie parsing, validation, and serialization} 44 + {- [Requests] - HTTP client that uses this jar for cookie persistence} 45 + {- [Xdge] - XDG Base Directory support for cookie file paths}} *) 39 46 40 47 type t 41 48 (** Cookie jar for storing and managing cookies.