1. 31 Jan, 2008 1 commit
  2. 29 Jan, 2008 2 commits
  3. 28 Jan, 2008 1 commit
  4. 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
  5. 24 Jan, 2008 1 commit
  6. 23 Jan, 2008 1 commit
  7. 21 Jan, 2008 1 commit
  8. 20 Jan, 2008 2 commits
  9. 18 Jan, 2008 1 commit
  10. 17 Jan, 2008 1 commit
  11. 16 Jan, 2008 3 commits
  12. 15 Jan, 2008 1 commit
  13. 14 Jan, 2008 1 commit
  14. 12 Jan, 2008 2 commits
  15. 11 Jan, 2008 1 commit
  16. 10 Jan, 2008 3 commits
  17. 08 Jan, 2008 1 commit
  18. 06 Jan, 2008 1 commit
  19. 05 Jan, 2008 2 commits
  20. 04 Jan, 2008 1 commit
  21. 02 Jan, 2008 2 commits
    • Daniel Stenberg's avatar
      I removed the socklen_t use from the public curl/curl.h header and instead · 193d33fd
      Daniel Stenberg authored
      made it an unsigned int. The type was only used in the curl_sockaddr struct
      definition (only used by the curl_opensocket_callback). On all platforms I
      could find information about, socklen_t is 32 unsigned bits large so I don't
      think this will break the API or ABI. The main reason for this change is of
      course for all the platforms that don't have a socklen_t definition in their
      headers to build fine again. Providing our own configure magic and custom
      definition of socklen_t on those systems proved to work but was a lot of
      cruft, code and extra magic needed - when this very small change of type seems
      harmless and still solves the missing socklen_t problem.
      193d33fd
    • Daniel Stenberg's avatar
      Richard Atterer brought a patch that added support for SOCKS4a proxies, which · a46b40b7
      Daniel Stenberg authored
      is an inofficial PROXY4 variant that sends the hostname to the proxy instead
      of the resolved address (which is already supported by SOCKS5).  --socks4a is
      the curl command line option for it and CURLOPT_PROXYTYPE can now be set to
      CURLPROXY_SOCKS4A as well.
      a46b40b7
  22. 01 Jan, 2008 1 commit
  23. 26 Dec, 2007 1 commit
  24. 24 Dec, 2007 1 commit
  25. 18 Dec, 2007 2 commits
  26. 17 Dec, 2007 1 commit
  27. 13 Dec, 2007 1 commit
    • Daniel Stenberg's avatar
      David Wright filed bug report #1849764 · 7b1a2214
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1849764) with an included fix. He
      identified a problem for re-used connections that previously had sent
      Expect: 100-continue and in some situations the subsequent POST (that didn't
      use Expect:) still had the internal flag set for its use. David's fix (that
      makes the setting of the flag in every single request unconditionally) is
      fine and is now used!
      7b1a2214
  28. 12 Dec, 2007 1 commit
  29. 09 Dec, 2007 1 commit
  30. 05 Dec, 2007 1 commit