1. 08 Aug, 2006 1 commit
  2. 07 Aug, 2006 1 commit
  3. 02 Aug, 2006 1 commit
  4. 01 Aug, 2006 1 commit
  5. 27 Jul, 2006 1 commit
  6. 26 Jul, 2006 2 commits
  7. 25 Jul, 2006 2 commits
  8. 17 Jul, 2006 1 commit
  9. 14 Jul, 2006 1 commit
  10. 08 Jul, 2006 1 commit
  11. 07 Jul, 2006 2 commits
    • Daniel Stenberg's avatar
      Ingmar Runge provided a source snippet that caused a crash. The reason for · ca319f63
      Daniel Stenberg authored
      the crash was that libcurl internally was a bit confused about who owned the
      DNS cache at all times so if you created an easy handle that uses a shared
      DNS cache and added that to a multi handle it would crash. Now we keep more
      careful internal track of exactly what kind of DNS cache each easy handle
      uses: None, Private (allocated for and used only by this single handle),
      Shared (points to a cache held by a shared object), Global (points to the
      global cache) or Multi (points to the cache within the multi handle that is
      automatically shared between all easy handles that are added with private
      caches).
      ca319f63
    • Daniel Stenberg's avatar
      yassl can be used now · e5cf6a20
      Daniel Stenberg authored
      e5cf6a20
  12. 04 Jul, 2006 1 commit
  13. 28 Jun, 2006 1 commit
  14. 24 Jun, 2006 1 commit
  15. 23 Jun, 2006 1 commit
  16. 22 Jun, 2006 1 commit
    • Daniel Stenberg's avatar
      Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and · dfe1884c
      Daniel Stenberg authored
      CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
      to send or receive data. This kind of adds the the command line tool's
      option --limit-rate to the library.
      
      The rate limiting logic in the curl app is now removed and is instead
      provided by libcurl itself. Transfer rate limiting will now also work for -d
      and -F, which it didn't before.
      dfe1884c
  17. 19 Jun, 2006 1 commit
  18. 12 Jun, 2006 2 commits
  19. 08 Jun, 2006 1 commit
  20. 07 Jun, 2006 1 commit
  21. 31 May, 2006 1 commit
  22. 25 May, 2006 1 commit
  23. 24 May, 2006 1 commit
  24. 10 May, 2006 2 commits
  25. 09 May, 2006 3 commits
  26. 08 May, 2006 1 commit
  27. 04 May, 2006 2 commits
    • Daniel Stenberg's avatar
      Roland Blom filed bug report #1481217 · e85e3054
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini
      and David Byron. libcurl previously wrongly used GetLastError() on windows to
      get error details after socket-related function calls, when it really should
      use WSAGetLastError() instead.
      
      When changing to this, the former function Curl_ourerrno() is now instead
      called Curl_sockerrno() as it is necessary to only use it to get errno from
      socket-related functions as otherwise it won't work as intended on Windows.
      e85e3054
    • Daniel Stenberg's avatar
      Mark Eichin submitted bug report #1480821 · 758f6eed
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1480821) He found and identified a
      problem with how libcurl dealt with GnuTLS and a case where gnutls returned
      GNUTLS_E_AGAIN indicating it would block. It would then return an unexpected
      return code, making Curl_ssl_send() confuse the upper layer - causing random
      28 bytes trash data to get inserted in the transfered stream.
      
      The proper fix was to make the Curl_gtls_send() function return the proper
      return codes that the callers would expect. The Curl_ossl_send() function
      already did this.
      758f6eed
  28. 02 May, 2006 1 commit
  29. 26 Apr, 2006 1 commit
  30. 25 Apr, 2006 1 commit
  31. 21 Apr, 2006 1 commit
  32. 18 Apr, 2006 1 commit