Skip to content
Snippets Groups Projects
  1. Feb 18, 2008
  2. Feb 16, 2008
  3. Feb 04, 2008
  4. Jan 29, 2008
  5. Jan 24, 2008
  6. Jan 23, 2008
  7. Jan 22, 2008
  8. Jan 19, 2008
  9. Jan 18, 2008
  10. Jan 17, 2008
  11. Jan 16, 2008
  12. Jan 13, 2008
  13. Jan 12, 2008
  14. Jan 11, 2008
    • Daniel Stenberg's avatar
      I made the curl tool switch from using CURLOPT_IOCTLFUNCTION to now use the · e2c81773
      Daniel Stenberg authored
      spanking new CURLOPT_SEEKFUNCTION simply to take advantage of the improved
      performance for the upload resume cases where you want to upload the last
      few bytes of a very large file. To implement this decently, I had to switch
      the client code for uploading from fopen()/fread() to plain open()/read() so
      that we can use lseek() to do >32bit seeks (as fseek() doesn't allow that)
      on systems that offer support for that.
      e2c81773
  15. Jan 10, 2008
    • 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
  16. Jan 09, 2008
  17. Jan 06, 2008
  18. Jan 05, 2008
  19. Jan 04, 2008
  20. Jan 02, 2008
  21. Jan 01, 2008
  22. Dec 19, 2007
  23. Dec 18, 2007
  24. Dec 13, 2007
  25. Dec 12, 2007
  26. Dec 09, 2007
  27. Dec 08, 2007
Loading