1. 01 Aug, 2013 1 commit
  2. 31 Jul, 2013 6 commits
  3. 29 Jul, 2013 6 commits
  4. 26 Jul, 2013 1 commit
  5. 25 Jul, 2013 2 commits
  6. 24 Jul, 2013 6 commits
  7. 23 Jul, 2013 5 commits
  8. 22 Jul, 2013 6 commits
  9. 21 Jul, 2013 1 commit
    • Daniel Stenberg's avatar
      curl_multi_wait: fix revents · 513e587c
      Daniel Stenberg authored
      Commit 6d30f8eb didn't work properly. First, it used the wrong
      array index, but this fix also:
      
      1 - only does the copying if indeed there was any activity
      
      2 - makes sure to properly translate between internal and external
      bitfields, which are not guaranteed to match
      
      Reported-by: Evgeny Turnaev
      513e587c
  10. 19 Jul, 2013 5 commits
  11. 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