Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-28 | another small fix to directory listing output; disabled CURL_LIBSSH2_DEBUG. | Gunter Knauf | |
2007-01-27 | fix sftp directory listing so that it works without -v and is redirectable ↵ | Gunter Knauf | |
with -o/-O. | |||
2007-01-27 | tell us what we put out here... | Gunter Knauf | |
2007-01-27 | update copyright year notice | Yang Tse | |
2007-01-27 | Compiler warning fix | Yang Tse | |
2007-01-27 | sync comment with reality | Yang Tse | |
2007-01-26 | Fixed compiler warning. | Dan Fandrich | |
2007-01-26 | added project header to lib resource file; fixed header copyright. | Gunter Knauf | |
2007-01-25 | fix compiler warnings for SSL-disabled builds | Daniel Stenberg | |
2007-01-25 | removed unused define. | Gunter Knauf | |
2007-01-25 | fixed copyright for new year. | Gunter Knauf | |
2007-01-25 | enabled build with libssh2. | Gunter Knauf | |
2007-01-25 | fix non-SSL builds again | Daniel Stenberg | |
2007-01-25 | Fixed a dangling pointer problem that prevented the http_proxy environment | Dan Fandrich | |
variable from being properly used in many cases (and caused test case 63 to fail). | |||
2007-01-25 | removed not used define. | Gunter Knauf | |
2007-01-24 | Only shut down SSL if the CCC command succeeded. | Dan Fandrich | |
2007-01-24 | moved the SSL pending function to the proper place and name | Daniel Stenberg | |
2007-01-24 | bail out on strdup() errors | Daniel Stenberg | |
2007-01-23 | - David McCreedy did NTLM changes mainly for non-ASCII platforms: | Daniel Stenberg | |
#1 There's a compilation error in http_ntlm.c if USE_NTLM2SESSION is NOT defined. I noticed this while testing various configurations. Line 867 of the current http_ntlm.c is a closing bracket for an if/else pair that only gets compiled in if USE_NTLM2SESSION is defined. But this closing bracket wasn't in an #ifdef so the code fails to compile unless USE_NTLM2SESSION was defined. Lines 198 and 140 of my patch wraps that closing bracket in an #ifdef USE_NTLM2SESSION. #2 I noticed several picky compiler warnings when DEBUG_ME is defined. I've fixed them with casting. By the way, DEBUG_ME was a huge help in understanding this code. #3 Hopefully the last non-ASCII conversion patch for libcurl in a while. I changed the "NTLMSSP" literal to hex since this signature must always be in ASCII. Conversion code was strategically added where necessary. And the Curl_base64_encode calls were changed so the binary "blobs" http_ntlm.c creates are NOT translated on non-ASCII platforms. | |||
2007-01-23 | very minor indent change | Daniel Stenberg | |
2007-01-23 | enabled build with libssh2; fixed copyright for new year.. | Gunter Knauf | |
2007-01-17 | Supress "comparison between signed and unsigned" warning. | Gisle Vanem | |
2007-01-16 | David McCreedy fixed a flaw from his previous non-ascii HTTP patch | Daniel Stenberg | |
2007-01-16 | - Armel Asselin improved libcurl to behave a lot better when an easy handle | Daniel Stenberg | |
doing an FTP transfer is removed from a multi handle before completion. The fix also fixed the "alive counter" to be correct on "premature removal" for all protocols. | |||
2007-01-16 | restore previous addition to the amount of data that is returned | Daniel Stenberg | |
2007-01-16 | Fixed a small memory leak in tftp uploads discovered by curl's memory leak | Dan Fandrich | |
detector. Also changed tftp downloads to URL-unescape the downloaded file name. | |||
2007-01-14 | - David McCreedy provided libcurl changes for doing HTTP communication on | Daniel Stenberg | |
non-ASCII platforms. It does add some complexity, most notably with more #ifdefs, but I want to see this supported added and I can't see how we can add it without the extra stuff added. | |||
2007-01-13 | fixed bad variable use when getting the size which we should read when | Daniel Stenberg | |
attempting not to read data that might belong to the next response (if pipelining) | |||
2007-01-13 | make Curl_cookie_clearall() survive getting called with a NULL pointer | Daniel Stenberg | |
2007-01-10 | Display crypto engine name correctly in debug message. | Dan Fandrich | |
2007-01-08 | Correct error code for CCC/SSL shutdown failure | Linus Nielsen Feltzing | |
2007-01-08 | Removed unused variable in Curl_ossl_shutdown() | Linus Nielsen Feltzing | |
2007-01-06 | Fix compilation errors when building without SSL | Linus Nielsen Feltzing | |
2007-01-05 | - Linus Nielsen Feltzing introduced the --ftp-ssl-ccc command line option to | Daniel Stenberg | |
curl that uses the new CURLOPT_FTP_SSL_CCC option in libcurl. If enabled, it will make libcurl shutdown SSL/TLS after the authentication is done on a FTP-SSL operation. | |||
2007-01-05 | Include <dos.h> for delay() on MSDOS. | Gisle Vanem | |
2007-01-03 | - David McCreedy made changes to allow base64 encoding/decoding to work on | Daniel Stenberg | |
non-ASCII platforms. | |||
2007-01-03 | - Matt Witherspoon fixed the flaw which made libcurl 7.16.0 always store | Daniel Stenberg | |
downloaded data in two buffers, just to be able to deal with a special HTTP pipelining case. That is now only activated for pipelined transfers. In Matt's case, it showed as a considerable performance difference, | |||
2007-01-02 | - Victor Snezhko helped us fix bug report #1603712 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1603712) (known bug #36) --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but that's when they were introduced as previous to that the limiting logic was made in the application only and not in the library). It was actually also broken on select()-based systems (as apposed to poll()) but we haven't had any such reports. We now use select(), Sleep() or delay() properly to sleep a while without waiting for anything input or output when the rate limiting is activated with the easy interface. | |||
2006-12-29 | curl_easy_duphandle() sets the magic number in the new handle | Daniel Stenberg | |
2006-12-22 | - Robert Foreman provided a prime example snippet showing how libcurl would | Daniel Stenberg | |
get confused and not acknowledge the 'no_proxy' variable properly once it had used the proxy and you re-used the same easy handle. I made sure the proxy name is properly stored in the connect struct rather than the sessionhandle/easy struct. | |||
2006-12-22 | Curl_getinfo() now checks for a NULL SessionHandle pointer | Daniel Stenberg | |
2006-12-22 | - David McCreedy fixed a bad call to getsockname() that wrongly used a size_t | Daniel Stenberg | |
variable to point to when it should be a socklen_t. | |||
2006-12-22 | When setting a proxy with environment variables and (for example) running | Daniel Stenberg | |
'curl [URL]' with a URL without a protocol prefix, curl would not send a correct request as it failed to add the protocol prefix. | |||
2006-12-21 | minor indent fix | Daniel Stenberg | |
2006-12-21 | removed unused variables | Daniel Stenberg | |
2006-12-21 | Robson Braga Araujo reported bug #1618359 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1618359) and subsequently provided a patch for it: when downloading 2 zero byte files in a row, curl 7.16.0 enters an infinite loop, while curl 7.16.1-20061218 does one additional unnecessary request. Fix: During the "Major overhaul introducing http pipelining support and shared connection cache within the multi handle." change, headerbytecount was moved to live in the Curl_transfer_keeper structure. But that structure is reset in the Transfer method, losing the information that we had about the header size. This patch moves it back to the connectdata struct. | |||
2006-12-16 | recv() doesn't take MSG_NOSIGNAL in its forth argument so let's not pass it. | Daniel Stenberg | |
Brendan Jurd pointed out. | |||
2006-12-16 | Brendan Jurd provided a fix that now prevents libcurl from getting a SIGPIPE | Daniel Stenberg | |
during certain conditions when GnuTLS is used. | |||
2006-12-16 | Brendan Jurd pointed out these typos | Daniel Stenberg | |
2006-12-15 | Fix typo. | Gisle Vanem | |