1. 14 Oct, 2013 1 commit
  2. 12 Oct, 2013 1 commit
  3. 11 Oct, 2013 1 commit
  4. 02 Oct, 2013 1 commit
  5. 30 Sep, 2013 1 commit
  6. 28 Sep, 2013 2 commits
  7. 21 Sep, 2013 1 commit
  8. 20 Sep, 2013 3 commits
  9. 13 Sep, 2013 2 commits
  10. 12 Sep, 2013 2 commits
  11. 08 Sep, 2013 1 commit
  12. 06 Sep, 2013 1 commit
  13. 05 Sep, 2013 2 commits
  14. 04 Sep, 2013 1 commit
  15. 31 Aug, 2013 1 commit
  16. 30 Aug, 2013 2 commits
  17. 28 Aug, 2013 1 commit
  18. 25 Aug, 2013 1 commit
  19. 24 Aug, 2013 1 commit
    • Daniel Stenberg's avatar
      FAQ: editorial updates · 1a911f7e
      Daniel Stenberg authored
      Several language fixes. Several reformats that should make the HTML
      generation of this document look better.
      
      Reported-by: Dave Thompson
      1a911f7e
  20. 20 Aug, 2013 1 commit
    • Daniel Stenberg's avatar
      CURLM_ADDED_ALREADY: new error code · 19122c07
      Daniel Stenberg authored
      Doing curl_multi_add_handle() on an easy handle that is already added to
      a multi handle now returns this error code. It previously returned
      CURLM_BAD_EASY_HANDLE for this condition.
      19122c07
  21. 11 Aug, 2013 1 commit
  22. 09 Aug, 2013 2 commits
  23. 08 Aug, 2013 2 commits
  24. 06 Aug, 2013 2 commits
  25. 02 Aug, 2013 2 commits
  26. 29 Jul, 2013 1 commit
  27. 18 Jul, 2013 1 commit
    • Daniel Stenberg's avatar
      CURLOPT_XFERINFOFUNCTION: introducing a new progress callback · 12d01cb6
      Daniel Stenberg authored
      CURLOPT_XFERINFOFUNCTION is now the preferred progress callback function
      and CURLOPT_PROGRESSFUNCTION is considered deprecated.
      
      This new callback uses pure 'curl_off_t' arguments to pass on full
      resolution sizes. It otherwise retains the same characteristics: the
      same call rate, the same meanings for the arguments and the return code
      is used the same way.
      
      The progressfunc.c example is updated to show how to use the new
      callback for newer libcurls while supporting the older one if built with
      an older libcurl or even built with a newer libcurl while running with
      an older.
      12d01cb6
  28. 16 Jul, 2013 1 commit
  29. 14 Jul, 2013 1 commit
    • Dave Reisner's avatar
      src/tool: allow timeouts to accept decimal values · d8c04909
      Dave Reisner authored
      Implement wrappers around strtod to convert the user argument to a
      double with sane error checking. Use this to allow --max-time and
      --connect-timeout to accept decimal values instead of strictly integers.
      
      The manpage is updated to make mention of this feature and,
      additionally, forewarn that the actual timeout of the operation can
      vary in its precision (particularly as the value increases in its
      decimal precision).
      d8c04909