1. 23 Mar, 2010 3 commits
    • Daniel Stenberg's avatar
      mark connection as connected · 4b351d01
      Daniel Stenberg authored
      Kenny To filed the bug report #2963679 with patch to fix a
      problem he experienced with doing multi interface HTTP POST over
      a proxy using PROXYTUNNEL. He found a case where it would connect
      fine but bits.tcpconnect was not set correct so libcurl didn't
      work properly.
      
      (http://curl.haxx.se/bug/view.cgi?id=2963679)
      4b351d01
    • Daniel Stenberg's avatar
      chunked-encoding with Content-Length: header problem · 7fd32ce7
      Daniel Stenberg authored
      Akos Pasztory filed debian bug report #572276
      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572276
      mentioning a problem with a resource that returns chunked-encoded
      _and_ with a Content-Length and libcurl failed to properly ignore
      the latter information.
      7fd32ce7
    • Daniel Stenberg's avatar
      delayed easy handle kill caused double Curl_close() call · 2a94293e
      Daniel Stenberg authored
      Hauke Duden provided an example program that made the multi
      interface crash.  His example simply used the multi interface and
      did first one FTP transfer and after completion it used a second
      easy handle and did another FTP transfer on the same FTP server.
      
      This triggered a bug in the "delayed easy handle kill" system
      that curl uses: when an FTP connection is left alive it must keep
      an easy handle around internally - only for the purpose of having
      an easy handle when it later disconnects it. The code assumed
      that when the easy handle was removed and an internal reference
      was made, that version could be killed later on when a new easy
      handle came using the same connection. This was wrong as Hauke's
      example showed that the removed handle wasn't killed for real
      until later. This caused a double close attempt => segfault.
      2a94293e
  2. 22 Mar, 2010 2 commits
  3. 21 Mar, 2010 1 commit
  4. 15 Mar, 2010 1 commit
    • Daniel Stenberg's avatar
      - Constantine Sapuntzakis brought a patch: · 733f794c
      Daniel Stenberg authored
        The problem mentioned on Dec 10 2009
        (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed.
        Partially because an easy handle can be associated with many connections in
        the cache (e.g. if there is a redirect during the lifetime of the easy
        handle).  The previous patch only cleaned up the first one. The new fix now
        removes the easy handle from all connections, not just the first one.
      733f794c
  5. 06 Mar, 2010 1 commit
  6. 05 Mar, 2010 2 commits
  7. 02 Mar, 2010 5 commits
  8. 01 Mar, 2010 3 commits
  9. 26 Feb, 2010 1 commit
  10. 25 Feb, 2010 1 commit
    • Yang Tse's avatar
      · 6a8aa246
      Yang Tse authored
      Fixed bug report #2958074 indicating
      (http://curl.haxx.se/bug/view.cgi?id=2958074) that curl on Windows with
      option --trace-time did not use local time when timestamping trace lines.
      This could also happen on other systems depending on time souurce.
      6a8aa246
  11. 20 Feb, 2010 2 commits
  12. 13 Feb, 2010 2 commits
  13. 12 Feb, 2010 1 commit
  14. 11 Feb, 2010 1 commit
    • Yang Tse's avatar
      · c3b87d1b
      Yang Tse authored
      mention last changes
      c3b87d1b
  15. 09 Feb, 2010 2 commits
  16. 02 Feb, 2010 1 commit
    • Yang Tse's avatar
      · 49ba75af
      Yang Tse authored
      - Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
        symbol will not be available when building with CURL_NO_OLDIES defined. Use
        of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0
      49ba75af
  17. 01 Feb, 2010 1 commit
  18. 27 Jan, 2010 1 commit
    • Yang Tse's avatar
      · 3cb76e5e
      Yang Tse authored
      mention asynchronous DNS lookups enhancements
      3cb76e5e
  19. 26 Jan, 2010 1 commit
  20. 23 Jan, 2010 1 commit
  21. 21 Jan, 2010 1 commit
  22. 19 Jan, 2010 2 commits
    • Daniel Stenberg's avatar
      - As was pointed out on the http-state mailing list, the order of cookies in a · 877dad1e
      Daniel Stenberg authored
        HTTP Cookie: header _needs_ to be sorted on the path length in the cases
        where two cookies using the same name are set more than once using
        (overlapping) paths. Realizing this, identically named cookies must be
        sorted correctly. But detecting only identically named cookies and take care
        of them individually is harder than just to blindly and unconditionally sort
        all cookies based on their path lengths. All major browsers also already do
        this, so this makes our behavior one step closer to them in the cookie area.
      
        Test case 8 was the only one that broke due to this change and I updated it
        accordingly.
      877dad1e
    • Daniel Stenberg's avatar
      - David McCreedy brought a fix and a new test case (129) to make libcurl work · a5ca3f17
      Daniel Stenberg authored
        again when downloading files over FTP using ASCII and it turns out that the
        final size of the file is not the same as the initial size the server
        reported. This is very common since servers don't take the newline
        conversions into account.
      a5ca3f17
  23. 11 Jan, 2010 2 commits
  24. 09 Jan, 2010 1 commit
  25. 08 Jan, 2010 1 commit
    • Daniel Stenberg's avatar
      - Johan van Selst found and fixed a OpenSSL session ref count leak: · 552c3de3
      Daniel Stenberg authored
        ossl_connect_step3() increments an SSL session handle reference counter on
        each call. When sessions are re-used this reference counter may be
        incremented many times, but it will be decremented only once when done (by
        Curl_ossl_session_free()); and the internal OpenSSL data will not be freed
        if this reference count remains positive. When a session is re-used the
        reference counter should be corrected by explicitly calling
        SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid
        introducing a memory leak.
      
        (http://curl.haxx.se/bug/view.cgi?id=2926284)
      552c3de3