summaryrefslogtreecommitdiff
path: root/tests/data/test1136
Commit message (Collapse)AuthorAgeFilesLines
* cookies: support creation-time attribute for cookiesDaniel Gustafsson2018-08-311-1/+1
| | | | | | | | | | | | | | 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
* test1136: fix cookie order after commit c990eadd1277Daniel Stenberg2018-04-091-1/+1
|
* cookie: do not refuse cookies for localhostTim Rühsen2016-03-081-0/+1
| | | | Closes #658
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* teste1136: only run when PSL is enabledDaniel Stenberg2015-10-181-0/+3
|
* cookies: Add support for Mozilla's Publix Suffix ListTim Rühsen2015-10-171-0/+60
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