Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-31 | cookies: support creation-time attribute for cookies | Daniel Gustafsson | |
According to RFC6265 section 5.4, cookies with equal path lengths SHOULD be sorted by creation-time (earlier first). This adds a creation-time record to the cookie struct in order to make cookie sorting more deterministic. The creation-time is defined as the order of the cookies in the jar, the first cookie read fro the jar being the oldest. The creation-time is thus not serialized into the jar. Also remove the strcmp() matching in the sorting as there is no lexicographic ordering in RFC6265. Existing tests are updated to match. Closes #2524 | |||
2018-04-09 | test1136: fix cookie order after commit c990eadd1277 | Daniel Stenberg | |
2016-03-08 | cookie: do not refuse cookies for localhost | Tim Rühsen | |
Closes #658 | |||
2016-02-03 | URLs: change all http:// URLs to https:// | Daniel Stenberg | |
2015-10-18 | teste1136: only run when PSL is enabled | Daniel Stenberg | |
2015-10-17 | cookies: Add support for Mozilla's Publix Suffix List | Tim Rühsen | |
Use libpsl to check the domain value of Set-Cookie headers (and cookie jar entries) for not being a Publix Suffix. The configure script checks for "libpsl" by default. Disable the check with --without-libpsl. Ref: https://publicsuffix.org/ Ref: https://github.com/publicsuffix/list Ref: https://github.com/rockdaboot/libpsl |