Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-12 | - Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent | Daniel Stenberg | |
to the debug callback. - Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and CURLOPT_HTTP_TRANSFER_DECODING that if set to zero will disable libcurl's internal decoding of content or transfer encoded content. This may be preferable in cases where you use libcurl for proxy purposes or similar. The command line tool got a --raw option to disable both at once. | |||
2007-02-12 | - Jeff Pohlmeyer fixed a flaw in curl_multi_add_handle() when adding a handle | Daniel Stenberg | |
that has an easy handle present in the "closure" list pending closure. | |||
2007-02-07 | SCP upload done non-blocking | Daniel Stenberg | |
2007-02-06 | fix for millisecond resolution timeouts | Yang Tse | |
2007-02-06 | compiler warning fix | Yang Tse | |
2007-02-06 | read SFTP with the non-blocking API | Daniel Stenberg | |
2007-02-06 | compiler warning fix | Yang Tse | |
2007-02-05 | - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS | Daniel Stenberg | |
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution instead. The only restriction to that is the alarm() (sometimes) used to abort name resolves as that uses full seconds. I fixed the FTP response timeout part of the patch. Internally we now count and keep the timeouts in milliseconds but it also means we multiply set timeouts with 1000. The effect of this is that no timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which equals 24.86 days. We probably couldn't before either since the code did *1000 on the timeout values on several places already. | |||
2007-02-05 | compiler warning fix | Yang Tse | |
2007-02-04 | Suppress warning "'nread' might be used uninitialized in this function". | Gisle Vanem | |
2007-02-03 | compiler warning fix | Yang Tse | |
2007-02-03 | - Manfred Schwarb reported that socks5 support was broken and help us pinpoint | Daniel Stenberg | |
the problem. The code now tries harder to use httproxy and proxy where apppropriate, as not all proxies are HTTP... | |||
2007-02-02 | compiler warning fix | Yang Tse | |
2007-02-02 | move DEBUGF macro definition to setup_once.h | Yang Tse | |
2007-02-02 | prefer using the (upcoming) non-blocking libssh2 API | Daniel Stenberg | |
2007-02-01 | compiler warning fix | Yang Tse | |
2007-02-01 | Suppress the "'convbuf' might be used uninitialized in this function" warning. | Gisle Vanem | |
2007-02-01 | fogot to change Curl_mk_connc in header file | Yang Tse | |
2007-02-01 | compiler warning fix | Yang Tse | |
2007-01-31 | add debug messages for initialization failures | Yang Tse | |
2007-01-29 | Use DOS line-endings. | Gisle Vanem | |
2007-01-29 | - Michael Wallner reported that when doing a CONNECT with a custom User-Agent | Daniel Stenberg | |
header, you got _two_ User-Agent headers in the CONNECT request...! Added test case 287 to verify the fix. | |||
2007-01-29 | fixed segfault when compiled with MingW32 and cmd or command shell. | Gunter Knauf | |
2007-01-28 | Andreas Rieke added extra infof() for when a connection is not re-used due to | Daniel Stenberg | |
SSL conditions not being the same | |||
2007-01-28 | silence compiler warnings | Daniel Stenberg | |
2007-01-28 | enabled build with sspi. | Gunter Knauf | |
2007-01-28 | enabled build with hardcoded ca-bundle path; | Gunter Knauf | |
added distclean target. | |||
2007-01-28 | force to create ca-bunde.h even if it exists already. | Gunter Knauf | |
2007-01-28 | use var for awk. | Gunter Knauf | |
2007-01-28 | curl_easy_reset() now resets the CA bundle path correctly | Daniel Stenberg | |
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 | |