1. 21 Jun, 2016 4 commits
  2. 19 Jun, 2016 2 commits
  3. 17 Jun, 2016 1 commit
  4. 16 Jun, 2016 5 commits
  5. 15 Jun, 2016 2 commits
  6. 11 Jun, 2016 1 commit
  7. 09 Jun, 2016 1 commit
  8. 08 Jun, 2016 1 commit
  9. 07 Jun, 2016 1 commit
  10. 06 Jun, 2016 7 commits
  11. 05 Jun, 2016 1 commit
  12. 04 Jun, 2016 4 commits
  13. 03 Jun, 2016 1 commit
  14. 01 Jun, 2016 4 commits
    • Benjamin Kircher's avatar
      libcurl-multi.3: fix small typo · 873b4346
      Benjamin Kircher authored
      Closes #850
      873b4346
    • Viktor Szakats's avatar
      makefile.m32: add crypt32 for winssl builds · 55ab64ed
      Viktor Szakats authored
      Dependency added by 6cabd785
      
      Closes #849
      55ab64ed
    • Ivan Avdeev's avatar
      vtls: fix ssl session cache race condition · 31c521b0
      Ivan Avdeev authored
      Sessionid cache management is inseparable from managing individual
      session lifetimes. E.g. for reference-counted sessions (like those in
      SChannel and OpenSSL engines) every session addition and removal
      should be accompanied with refcount increment and decrement
      respectively. Failing to do so synchronously leads to a race condition
      that causes symptoms like use-after-free and memory corruption.
      This commit:
       - makes existing session cache locking explicit, thus allowing
         individual engines to manage lock's scope.
       - fixes OpenSSL and SChannel engines by putting refcount management
         inside this lock's scope in relevant places.
       - adds these explicit locking calls to other engines that use
         sessionid cache to accommodate for this change. Note, however,
         that it is unknown whether any of these engines could also have
         this race.
      
      Bug: https://github.com/curl/curl/issues/815
      Fixes #815
      Closes #847
      31c521b0
    • Andrew Kurushin's avatar
      schannel: add CURLOPT_CERTINFO support · 6cabd785
      Andrew Kurushin authored
      Closes #822
      6cabd785
  15. 31 May, 2016 4 commits
  16. 30 May, 2016 1 commit
    • Daniel Stenberg's avatar
      URL parser: allow URLs to use one, two or three slashes · 5409e1d7
      Daniel Stenberg authored
      Mostly in order to support broken web sites that redirect to broken URLs
      that are accepted by browsers.
      
      Browsers are typically even more leniant than this as the WHATWG URL
      spec they should allow an _infinite_ amount. I tested 8000 slashes with
      Firefox and it just worked.
      
      Added test case 1141, 1142 and 1143 to verify the new parser.
      
      Closes #791
      5409e1d7