1. 08 Feb, 2008 3 commits
  2. 07 Feb, 2008 1 commit
  3. 06 Feb, 2008 1 commit
  4. 03 Feb, 2008 1 commit
  5. 31 Jan, 2008 2 commits
  6. 29 Jan, 2008 2 commits
  7. 28 Jan, 2008 1 commit
  8. 27 Jan, 2008 1 commit
  9. 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
  10. 24 Jan, 2008 1 commit
  11. 23 Jan, 2008 1 commit
  12. 22 Jan, 2008 1 commit
  13. 21 Jan, 2008 2 commits
  14. 18 Jan, 2008 1 commit
  15. 17 Jan, 2008 1 commit
  16. 16 Jan, 2008 3 commits
  17. 15 Jan, 2008 2 commits
  18. 14 Jan, 2008 1 commit
  19. 12 Jan, 2008 2 commits
  20. 11 Jan, 2008 2 commits
  21. 10 Jan, 2008 3 commits
  22. 08 Jan, 2008 1 commit
  23. 06 Jan, 2008 1 commit
  24. 05 Jan, 2008 1 commit
    • Daniel Stenberg's avatar
      Based on further discussion on curl-library, I reverted yesterday's SOCKS5 · b4305764
      Daniel Stenberg authored
      code to instead introduce support for a new proxy type called
      CURLPROXY_SOCKS5_HOSTNAME that is used to send the host name to the proxy
      instead of IP address and there's thus no longer any need for a new
      curl_easy_setopt() option.
      
      The default SOCKS5 proxy is again back to sending the IP address to the
      proxy.  The new curl command line option for enabling sending host name to a
      SOCKS5 proxy is now --socks5-hostname.
      b4305764
  25. 04 Jan, 2008 1 commit
  26. 03 Jan, 2008 1 commit
  27. 02 Jan, 2008 2 commits
    • Daniel Stenberg's avatar
      - I fixed two cases of missing return code checks when handling chunked · d9023c16
      Daniel Stenberg authored
        decoding where a write error (or abort return from a callback) didn't stop
        libcurl's processing.
      d9023c16
    • 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