Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-03 | URLs: change all http:// URLs to https:// | Daniel Stenberg | |
2016-01-04 | progressfunc.c: spellfix description | Daniel Stenberg | |
2016-01-04 | examples: added descriptions | Daniel Stenberg | |
2013-07-18 | CURLOPT_XFERINFOFUNCTION: introducing a new progress callback | Daniel Stenberg | |
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. | |||
2012-12-05 | examples: fix compilation issues | Yang Tse | |
2011-12-05 | progress function example: include timed interval | Rob Ward | |
Adds a timer based off of CURLINFO_TOTAL_TIME that is used to perform certain actions after a minimum amount of time has passed using the progress function. As a consequence the curl handle is now also passed into the progress function. Progress example now also includes an example of how to retreive the TOTAL_TIME and print it out. | |||
2011-09-13 | progressfunc: a simple CURLOPT_PROGRESSFUNCTION example | Daniel Stenberg | |