1. 17 Jan, 2007 2 commits
  2. 16 Jan, 2007 5 commits
  3. 15 Jan, 2007 2 commits
  4. 14 Jan, 2007 1 commit
  5. 13 Jan, 2007 3 commits
  6. 10 Jan, 2007 3 commits
  7. 09 Jan, 2007 1 commit
  8. 08 Jan, 2007 3 commits
  9. 06 Jan, 2007 1 commit
  10. 05 Jan, 2007 2 commits
  11. 04 Jan, 2007 1 commit
  12. 03 Jan, 2007 4 commits
  13. 02 Jan, 2007 2 commits
  14. 31 Dec, 2006 1 commit
  15. 29 Dec, 2006 1 commit
  16. 25 Dec, 2006 1 commit
  17. 22 Dec, 2006 4 commits
  18. 21 Dec, 2006 3 commits
    • Daniel Stenberg's avatar
      minor indent fix · cb4a5f5a
      Daniel Stenberg authored
      cb4a5f5a
    • Daniel Stenberg's avatar
      removed unused variables · 1beb7de7
      Daniel Stenberg authored
      1beb7de7
    • Daniel Stenberg's avatar
      Robson Braga Araujo reported bug #1618359 · 89ab5f43
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1618359) and subsequently provided a
      patch for it: when downloading 2 zero byte files in a row, curl 7.16.0
      enters an infinite loop, while curl 7.16.1-20061218 does one additional
      unnecessary request.
      
      Fix: During the "Major overhaul introducing http pipelining support and
      shared connection cache within the multi handle." change, headerbytecount
      was moved to live in the Curl_transfer_keeper structure. But that structure
      is reset in the Transfer method, losing the information that we had about
      the header size. This patch moves it back to the connectdata struct.
      89ab5f43