1. 05 Oct, 2016 1 commit
  2. 04 Oct, 2016 5 commits
  3. 03 Oct, 2016 1 commit
    • Sergei Kuzmin's avatar
      cookies: same domain handling changed to match browser behavior · 54e48b14
      Sergei Kuzmin authored
      Cokie with the same domain but different tailmatching property are now
      considered different and do not replace each other.  If header contains
      following lines then two cookies will be set: Set-Cookie: foo=bar;
      domain=.foo.com; expires=Thu Mar 3 GMT 8:56:27 2033 Set-Cookie: foo=baz;
      domain=foo.com; expires=Thu Mar 3 GMT 8:56:27 2033
      
      This matches Chrome, Opera, Safari, and Firefox behavior. When sending
      stored tokens to foo.com Chrome, Opera, Firefox store send them in the
      stored order, while Safari pre-sort the cookies.
      
      Closes #1050
      54e48b14
  4. 01 Oct, 2016 1 commit
    • Stephen Brokenshire's avatar
      FAQ: Fix typos in section 5.14 (#1047) · 2a1d5389
      Stephen Brokenshire authored
      Type required for YourClass::func C++ function (using size_t in line
      with the documentation for CURLOPT_WRITEFUNCTION) and missing second
      colon when specifying the static function for CURLOPT_WRITEFUNCTION.
      2a1d5389
  5. 30 Sep, 2016 3 commits
  6. 26 Sep, 2016 1 commit
  7. 24 Sep, 2016 1 commit
  8. 23 Sep, 2016 1 commit
  9. 22 Sep, 2016 4 commits
  10. 21 Sep, 2016 2 commits
  11. 20 Sep, 2016 3 commits
  12. 19 Sep, 2016 7 commits
  13. 18 Sep, 2016 5 commits
  14. 16 Sep, 2016 4 commits
  15. 14 Sep, 2016 1 commit
    • Daniel Stenberg's avatar
      openssl: fix per-thread memory leak usiong 1.0.1 or 1.0.2 · d9321562
      Daniel Stenberg authored
      OpenSSL 1.0.1 and 1.0.2 build an error queue that is stored per-thread
      so we need to clean it when easy handles are freed, in case the thread
      will be killed in which the easy handle was used. All OpenSSL code in
      libcurl should extract the error in association with the error already
      so clearing this queue here should be harmless at worst.
      
      Fixes #964
      d9321562