1. 18 Feb, 2008 1 commit
  2. 17 Feb, 2008 1 commit
  3. 15 Feb, 2008 2 commits
  4. 11 Feb, 2008 1 commit
  5. 10 Feb, 2008 1 commit
  6. 09 Feb, 2008 1 commit
  7. 08 Feb, 2008 4 commits
  8. 07 Feb, 2008 1 commit
  9. 06 Feb, 2008 1 commit
  10. 03 Feb, 2008 1 commit
  11. 31 Jan, 2008 2 commits
  12. 29 Jan, 2008 2 commits
  13. 28 Jan, 2008 1 commit
  14. 27 Jan, 2008 1 commit
  15. 25 Jan, 2008 1 commit
    • Daniel Stenberg's avatar
      - Kevin Reed filed bug report #1879375 · c6df7888
      Daniel Stenberg authored
        (http://curl.haxx.se/bug/view.cgi?id=1879375) which describes how libcurl
        got lost in this scenario: proxy tunnel (or HTTPS over proxy), ask to do any
        proxy authentication and the proxy replies with an auth (like NTLM) and then
        closes the connection after that initial informational response.
      
        libcurl would not properly re-initialize the connection to the proxy and
        continue the auth negotiation like supposed. It does now however, as it will
        now detect if one or more authentication methods were available and asked
        for, and will thus retry the connection and continue from there.
      
      - I made the progress callback get called properly during proxy CONNECT.
      c6df7888
  16. 24 Jan, 2008 1 commit
  17. 23 Jan, 2008 1 commit
  18. 22 Jan, 2008 1 commit
  19. 21 Jan, 2008 2 commits
  20. 18 Jan, 2008 1 commit
  21. 17 Jan, 2008 1 commit
  22. 16 Jan, 2008 3 commits
  23. 15 Jan, 2008 2 commits
  24. 14 Jan, 2008 1 commit
  25. 12 Jan, 2008 2 commits
  26. 11 Jan, 2008 2 commits
  27. 10 Jan, 2008 2 commits
    • Daniel Stenberg's avatar
      Michal Marek made curl-config --libs not include /usr/lib64 in the output · 8df7e0bd
      Daniel Stenberg authored
      (it already before skipped /usr/lib).  /usr/lib64 is the default library
      directory on many 64bit systems and it's unlikely that anyone would use the
      path privately on systems where it's not.
      8df7e0bd
    • Daniel Stenberg's avatar
      Georg Lippitsch brought CURLOPT_SEEKFUNCTION and CURLOPT_SEEKDATA to allow · 18faa509
      Daniel Stenberg authored
      libcurl to seek in a given input stream. This is particularly important when
      doing upload resumes when there's already a huge part of the file present
      remotely. Before, and still if this callback isn't used, libcurl will read
      and through away the entire file up to the point to where the resuming
      begins (which of course can be a slow opereration depending on file size,
      I/O bandwidth and more). This new function will also be preferred to get
      used instead of the CURLOPT_IOCTLFUNCTION for seeking back in a stream when
      doing multi-stage HTTP auth with POST/PUT.
      18faa509