1. 10 Jan, 2008 2 commits
    • 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
    • Daniel Stenberg's avatar
      Nikitinskit Dmitriy filed bug report #1868255 · 0ce484ee
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1868255) with a patch. It identifies
      and fixes a problem with parsing WWW-Authenticate: headers with additional
      spaces in the line that the parser wasn't written to deal with.
      0ce484ee
  2. 08 Jan, 2008 1 commit
  3. 06 Jan, 2008 1 commit
  4. 05 Jan, 2008 2 commits
  5. 04 Jan, 2008 1 commit
  6. 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
  7. 01 Jan, 2008 1 commit
  8. 26 Dec, 2007 1 commit
  9. 24 Dec, 2007 1 commit
  10. 18 Dec, 2007 2 commits
  11. 17 Dec, 2007 1 commit
  12. 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
  13. 12 Dec, 2007 1 commit
  14. 09 Dec, 2007 1 commit
  15. 05 Dec, 2007 1 commit
  16. 03 Dec, 2007 3 commits
  17. 02 Dec, 2007 1 commit
  18. 29 Nov, 2007 1 commit
  19. 22 Nov, 2007 2 commits
  20. 20 Nov, 2007 2 commits
  21. 18 Nov, 2007 1 commit
  22. 15 Nov, 2007 1 commit
  23. 14 Nov, 2007 1 commit
  24. 12 Nov, 2007 1 commit
    • Daniel Stenberg's avatar
      Bug report #1830637 (http://curl.haxx.se/bug/view.cgi?id=1830637), which was · c5b16d44
      Daniel Stenberg authored
      forwarded from the Gentoo bug tracker by Daniel Black and was originally
      submitted by Robin Johnson, pointed out that libcurl would do bad memory
      references when it failed and bailed out before the handler thing was
      setup. My fix is not done like the provided patch does it, but instead I
      make sure that there's never any chance for a NULL pointer in that struct
      member.
      c5b16d44
  25. 11 Nov, 2007 1 commit
  26. 08 Nov, 2007 1 commit
  27. 06 Nov, 2007 1 commit
  28. 05 Nov, 2007 1 commit
  29. 01 Nov, 2007 2 commits
  30. 31 Oct, 2007 2 commits