Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use SIZEOF_OFF_T definition from config file | Yang Tse | 2008-08-26 | 1 | -1/+1 |
| | |||||
* | Library internal only C preprocessor macros FORMAT_OFF_T and FORMAT_OFF_TU | Yang Tse | 2008-08-16 | 1 | -13/+13 |
| | | | | | | | | | | | | remain in use as internal curl_off_t print formatting strings for the internal *printf functions which still cannot handle print formatting string directives such as "I64d", "I64u", and others available on MSVC, MinGW, Intel's ICC, and other DOS/Windows compilers. This reverts previous commit part which did: FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU | ||||
* | For congruency sake with the naming of other CURL_XXXXXX_CURL_OFF_T macros, | Yang Tse | 2008-08-15 | 1 | -13/+13 |
| | | | | | | | | | | | | | | the names of the curl_off_t formatting string directives now become CURL_FORMAT_CURL_OFF_T and CURL_FORMAT_CURL_OFF_TU. CURL_FMT_OFF_T -> CURL_FORMAT_CURL_OFF_T CURL_FMT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU Remove the use of an internal name for the curl_off_t formatting string directives and use the common one available from the inside and outside of the library. FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU | ||||
* | Fix curl_off_t sized constants usage | Yang Tse | 2008-08-12 | 1 | -41/+36 |
| | |||||
* | s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/g | Yang Tse | 2008-08-11 | 1 | -1/+1 |
| | |||||
* | Introcuding a new timestamp for curl_easy_getinfo(): | Daniel Stenberg | 2008-07-03 | 1 | -1/+5 |
| | | | | | | | | CURLINFO_APPCONNECT_TIME. This is set with the "application layer" handshake/connection is completed (typically SSL, TLS or SSH). By using this you can figure out the application layer's own connect time. You can extract the time stamp using curl's -w option and the new variable named 'time_appconnect'. This feature was sponsored by Lenny Rachitsky at NeuStar. | ||||
* | struct HandleData is now called struct SingleRequest, and is only for data that | Daniel Stenberg | 2007-11-24 | 1 | -4/+3 |
| | | | | | | | | | | | is inited at the start of the DO action. I removed the Curl_transfer_keeper struct completely, and I had to move out a few struct members (that had to be set before DO or used after DONE) to the UrlState struct. The SingleRequest struct is accessed with SessionHandle->req. One of the biggest reasons for doing this was the bunch of duplicate struct members in HandleData and Curl_transfer_keeper since it was really messy to keep track of two variables with the same name and basically the same purpose! | ||||
* | - Prevent the internal progress meter from updating more frequently than once | Daniel Stenberg | 2007-04-18 | 1 | -2/+9 |
| | | | | per second. | ||||
* | Change spelling, ONE_TERRABYTE -> ONE_TERABYTE | Yang Tse | 2007-03-23 | 1 | -8/+10 |
| | | | | | | | Shave off a couple of function calls in the part of Curl_pgrsUpdate() which is always executed when called. Fix a couple of comments. | ||||
* | Bryan Henderson fixed the progress function so that it can get called | Yang Tse | 2007-03-19 | 1 | -154/+156 |
| | | | | | | more frequently allowing same calling frecuency for the client progress callback, while keeping the once a second frecuency for speed calculations and internal display of the transfer progress. | ||||
* | reverted the pselect patch => http://curl.haxx.se/mail/lib-2007-03/0100.html | Daniel Stenberg | 2007-03-11 | 1 | -4/+3 |
| | |||||
* | - Bryan Henderson introduces two things: | Daniel Stenberg | 2007-03-10 | 1 | -3/+4 |
| | | | | | 1) the progress callback gets called more frequently (at times) 2) libcurl *might* call the callback when it receives a signal | ||||
* | Update copyright year, since the file has been modified | Yang Tse | 2006-10-27 | 1 | -1/+1 |
| | |||||
* | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | 2006-09-07 | 1 | -2/+2 |
| | | | | cache within the multi handle. | ||||
* | As reported in Mandrake's bug tracker bug 12289 | Daniel Stenberg | 2004-11-26 | 1 | -4/+2 |
| | | | | | | (http://qa.mandrakesoft.com/show_bug.cgi?id=12289), curl would print a newline to "finish" the progress meter after each redirect and not only after a completed transfer. | ||||
* | prevent warning with comparison between signed and unsigned | Daniel Stenberg | 2004-10-08 | 1 | -1/+1 |
| | |||||
* | removed tabs and trailing whitespace from source | Daniel Stenberg | 2004-10-06 | 1 | -1/+1 |
| | |||||
* | more typecasts to please picky compilers | Daniel Stenberg | 2004-08-10 | 1 | -1/+1 |
| | |||||
* | explicit typecasts to double to prevent warnings about implicit conversions | Daniel Stenberg | 2004-07-02 | 1 | -5/+5 |
| | | | | that might lose accuracy | ||||
* | typecast to int when the variable is int! | Daniel Stenberg | 2004-07-01 | 1 | -2/+2 |
| | |||||
* | Replaced all uses of sprintf() with the safer snprintf(). It is just a | Daniel Stenberg | 2004-06-24 | 1 | -17/+18 |
| | | | | precaution to prevent mistakes to lead to buffer overflows. | ||||
* | quickfix to avoid division by zero, possibly we should go over all of these | Daniel Stenberg | 2004-05-21 | 1 | -2/+4 |
| | | | | once and for all | ||||
* | calculate upload and download speed using doubles to keep precision. | Daniel Stenberg | 2004-05-20 | 1 | -14/+16 |
| | | | | deleted trailing whitespace | ||||
* | hm, avoid division by zero more carefully with that new percentage math | Daniel Stenberg | 2004-05-05 | 1 | -3/+3 |
| | |||||
* | Gisle fixed the percentage to work, I adjusted it slightly to not as easily | Daniel Stenberg | 2004-05-05 | 1 | -3/+6 |
| | | | | overflow on 32bit filesize-systems | ||||
* | made the progress meter display not overflow even if _very_ large files | Daniel Stenberg | 2004-05-05 | 1 | -6/+25 |
| | | | | | are transfered. The maximum size we support now is 8 exabytes, which equals to 8192 petabytes... | ||||
* | if the values allow it, avoid floting point math for the current speed | Daniel Stenberg | 2004-05-05 | 1 | -4/+15 |
| | |||||
* | Gisle Vanem corrected a mistake in a recent progress fix | Daniel Stenberg | 2004-04-19 | 1 | -1/+1 |
| | |||||
* | Dirk Manske increased the resolution for what the CURLINFO_*_TIME return. | Daniel Stenberg | 2004-04-09 | 1 | -7/+7 |
| | |||||
* | Dirk Manske's feedback: | Daniel Stenberg | 2004-04-02 | 1 | -10/+8 |
| | | | | | * bring back subsecond resolution to CURLINFO_TOTAL_TIME * Fix the Curl_pgrsDone() so that the final progress update is shown properly | ||||
* | made time2str() use longs internally instead to prevent compiler warnings | Daniel Stenberg | 2004-03-23 | 1 | -6/+6 |
| | | | | when converting to ints | ||||
* | added explicit typecasts to prevent compiler warnings on variable conversions | Daniel Stenberg | 2004-03-23 | 1 | -6/+6 |
| | |||||
* | it actually fits to make a NNNd NNh display so this can be used up to | Daniel Stenberg | 2004-03-23 | 1 | -2/+2 |
| | | | | 999 days | ||||
* | Fixed the time fields no never get wider than 8 letters. They can now switch | Daniel Stenberg | 2004-03-23 | 1 | -69/+53 |
| | | | | | | to a "days + hours" or even "just days" display if the time value is very large. I also switched several calculations over to fixed-point instead of the previous doubles. | ||||
* | Made max5data() take a curl_off_t size as argument instead of double. Should | Daniel Stenberg | 2004-03-11 | 1 | -16/+18 |
| | | | | | make the progress meter more accurate for large files. Also made the sprintf usage in that function avoid floating point. | ||||
* | Use more curl_off_t variables when doing the progress meter calculations and | Daniel Stenberg | 2004-03-10 | 1 | -16/+16 |
| | | | | | argument passing and try to convert to double only when providing data to the external world. | ||||
* | Yet another curl_off_t printf format attempt, we now exclude the %-letter from | Daniel Stenberg | 2004-03-02 | 1 | -5/+5 |
| | | | | | FORMAT_OFF_T to allow additional options to get specified, like with '"%5" FORMAT_OFF_T'. | ||||
* | use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity of | Daniel Stenberg | 2004-03-02 | 1 | -1/+1 |
| | | | | having to redef that name | ||||
* | Use CURL_FORMAT_OFF_T for printf()inf curl_off_t variables. | Daniel Stenberg | 2004-03-01 | 1 | -1/+2 |
| | |||||
* | Dan Fandrich's cleanup patch to make pedantic compiler options cause less | Daniel Stenberg | 2004-01-29 | 1 | -4/+6 |
| | | | | warnings. Minor edits by me. | ||||
* | very big transfers now get nicer progress displayed after 9999 megabytes have | Daniel Stenberg | 2004-01-27 | 1 | -0/+11 |
| | | | | been transfered! | ||||
* | fixed the progress meter display for files >32 bit, Gisle Vanem reported | Daniel Stenberg | 2004-01-23 | 1 | -3/+3 |
| | |||||
* | use the %dk display for one extra k of progress | Daniel Stenberg | 2004-01-15 | 1 | -1/+1 |
| | |||||
* | updated year in the copyright string | Daniel Stenberg | 2004-01-07 | 1 | -1/+1 |
| | |||||
* | David J Meyer's large file support. | Daniel Stenberg | 2004-01-05 | 1 | -1/+2 |
| | |||||
* | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | 2003-10-14 | 1 | -6/+0 |
| | |||||
* | George Comninos provided a fix that calls the progress meter when waiting | Daniel Stenberg | 2003-05-14 | 1 | -6/+8 |
| | | | | for FTP command responses take >1 second. | ||||
* | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | 2003-01-29 | 1 | -8/+0 |
| | | | | way for emacs, and vim users should provide a similar non-polluting style | ||||
* | copyright year update in the source header | Daniel Stenberg | 2003-01-16 | 1 | -1/+1 |
| | |||||
* | updated source code boilerplate/header | Daniel Stenberg | 2002-09-03 | 1 | -7/+7 |
| |