1. 21 Dec, 2006 1 commit
  2. 19 Dec, 2006 2 commits
    • Daniel Stenberg's avatar
      * removed the SSH-based protocols as they are now being implemented · 0e899d77
      Daniel Stenberg authored
      * added mentioning of doing the stunnel equivalent ourselves for the test suite
      * spell-check
      0e899d77
    • Daniel Stenberg's avatar
      37. Having more than one connection to the same host when doing NTLM · 1a85fb2b
      Daniel Stenberg authored
        authentication (with performs multiple "passes" and authenticates a
        connection rather than a HTTP request), and particularly when using the
        multi interface, there's a risk that libcurl will re-use a wrong connection
        when doing the different passes in the NTLM negotiation and thus fail to
        negotiate (in seemingly mysterious ways).
      
      36. --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and
        CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but
        that's when they were introduced as previous to that the limiting logic was
        made in the application only and not in the library). This problem is easily
        repeated and it takes a Windows person to fire up his/hers debugger in order
        to fix. http://curl.haxx.se/bug/view.cgi?id=1603712
      1a85fb2b
  3. 16 Dec, 2006 3 commits
  4. 15 Dec, 2006 2 commits
  5. 14 Dec, 2006 2 commits
  6. 11 Dec, 2006 3 commits
  7. 07 Dec, 2006 1 commit
  8. 06 Dec, 2006 3 commits
  9. 05 Dec, 2006 13 commits
  10. 03 Dec, 2006 1 commit
  11. 01 Dec, 2006 2 commits
  12. 30 Nov, 2006 1 commit
  13. 29 Nov, 2006 2 commits
  14. 27 Nov, 2006 2 commits
  15. 25 Nov, 2006 2 commits
    • Daniel Stenberg's avatar
      added the new test 282 · 090f5a9a
      Daniel Stenberg authored
      090f5a9a
    • Daniel Stenberg's avatar
      Venkat Akella found out that libcurl did not like HTTP responses that simply · da58d03f
      Daniel Stenberg authored
      responded with a single status line and no headers nor body. Starting now, a
      HTTP response on a persistent connection (i.e not set to be closed after the
      response has been taken care of) must have Content-Length or chunked
      encoding set, or libcurl will simply assume that there is no body.
      
      To my horror I learned that we had no less than 57(!) test cases that did bad
      HTTP responses like this, and even the test http server (sws) responded badly
      when queried by the test system if it is the test system. So although the
      actual fix for the problem was tiny, going through all the newly failing test
      cases got really painful and boring.
      da58d03f