Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-10 | sources: update source headers | Daniel Stenberg | |
All C and H files now (should) feature the proper project curl source code header, which includes basic info, a copyright statement and some basic disclaimers. | |||
2010-05-27 | lib573: do not compare double for exact match | Tor Arntsen | |
2010-05-20 | Test 573: Use correct type for CURLINFO_CONNECT_TIME | Tor Arntsen | |
curl_easy_getinfo() called with a pointer to long instead of double would sigbus on RISC processors (e.g. MIPS) due to wrong alignment of pointer address. | |||
2010-05-07 | multi interface: missed storing connection time | Daniel Stenberg | |
Dirk Manske reported a regression. When connecting with the multi interface, there were situations where libcurl wouldn't store connect time correctly as it used to (and is documented to) do. Using his fine sample program we could repeat it, and I wrote up test case 573 using that code. The problem does not easily show itself using the local test suite though. The fix, also as suggested by Dirk, is a bit on the ugly side as it adds yet another call to Curl_verboseconnect() and setting the TIMER_CONNECT time. That situation is subject for some closer inspection in the future. |