wok annotate perl-http-cookies/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (2022-05-21)
parents
children
rev   line source
Hans-G?nter@24218 1 This class is for objects that represent a "cookie jar" -- that is,
Hans-G?nter@24218 2 a database of all the HTTP cookies that a given LWP::UserAgent
Hans-G?nter@24218 3 object knows about.
Hans-G?nter@24218 4
Hans-G?nter@24218 5 Cookies are a general mechanism which server side connections can
Hans-G?nter@24218 6 use to both store and retrieve information on the client side of
Hans-G?nter@24218 7 the connection.
Hans-G?nter@24218 8 For more information about cookies refer to Cookie Spec and Cookie
Hans-G?nter@24218 9 Central.
Hans-G?nter@24218 10 This module also implements the new style cookies described in
Hans-G?nter@24218 11 RFC 2965. The two variants of cookies are supposed to be able to
Hans-G?nter@24218 12 coexist happily.
Hans-G?nter@24218 13
Hans-G?nter@24218 14 Instances of the class HTTP::Cookies are able to store a collection
Hans-G?nter@24218 15 of Set-Cookie2: and Set-Cookie: headers and are able to use this
Hans-G?nter@24218 16 information to initialize Cookie-headers in HTTP::Request objects.
Hans-G?nter@24218 17 The state of a HTTP::Cookies object can be saved in and restored
Hans-G?nter@24218 18 from files.