1. 11 Jun, 2019 4 commits
  2. 10 Jun, 2019 8 commits
  3. 09 Jun, 2019 5 commits
  4. 08 Jun, 2019 1 commit
  5. 05 Jun, 2019 4 commits
  6. 04 Jun, 2019 5 commits
  7. 03 Jun, 2019 1 commit
  8. 02 Jun, 2019 6 commits
  9. 01 Jun, 2019 2 commits
  10. 31 May, 2019 1 commit
  11. 29 May, 2019 3 commits
    • Josie Huddleston's avatar
      http2: Stop drain from being permanently set on · 1c0e9527
      Josie Huddleston authored
      Various functions called within Curl_http2_done() can have the
      side-effect of setting the Easy connection into drain mode (by calling
      drain_this()).  However, the last time we unset this for a transfer (by
      calling drained_transfer()) is at the beginning of Curl_http2_done().
      If the Curl_easy is reused for another transfer, it is then stuck in
      drain mode permanently, which in practice makes it unable to write any
      data in the new transfer.
      
      This fix moves the last call to drained_transfer() to later in
      Curl_http2_done(), after the functions that could potentially call for a
      drain.
      
      Fixes #3966
      Closes #3967
      Reported-by: Josie-H
      1c0e9527
    • Steve Holme's avatar
      conncache: Remove the DEBUGASSERT on length check · bdf6d8af
      Steve Holme authored
      We trust the calling code as this is an internal function.
      
      Closes #3962
      bdf6d8af
    • Gisle Vanem's avatar
      system_win32: fix function prototype · 48b9ea43
      Gisle Vanem authored
      - Change if_nametoindex parameter type from char * to const char *.
      
      Follow-up to 09eef8af from this morning.
      
      Bug: https://github.com/curl/curl/commit/09eef8af#r33716067
      48b9ea43