#
d3b89e11 |
| 02-Mar-2007 |
Daniel Stenberg |
- Robert A. Monat and Shmulik Regev helped out to fix the new */Makefile.vc8 makefiles that are included in the source release archives, generated from the Makefile.vc6 files by the maket
- Robert A. Monat and Shmulik Regev helped out to fix the new */Makefile.vc8 makefiles that are included in the source release archives, generated from the Makefile.vc6 files by the maketgz script. I also modified the root Makefile to have a VC variable that defaults to vc6 but can be overridden to allow it to be used for vc8 as well. Like this: nmake VC=vc8 vc
show more ...
|
#
060f7ca2 |
| 27-Feb-2007 |
Daniel Stenberg |
- Hang Kin Lau found and fixed: When I use libcurl to connect to an https server through a proxy and have the remote https server port set using the CURLOPT_PORT option, protocol gets res
- Hang Kin Lau found and fixed: When I use libcurl to connect to an https server through a proxy and have the remote https server port set using the CURLOPT_PORT option, protocol gets reset to http from https after the first request. User defined URL was modified internally by libcurl and subsequent reuse of the easy handle may lead to connection using a different protocol (if not originally http). I found that libcurl hardcoded the protocol to "http" when it tries to regenerate the URL if CURLOPT_PORT is set. I tried to fix the problem as follows and it's working fine so far
show more ...
|
#
b3272fd7 |
| 27-Feb-2007 |
Daniel Stenberg |
HTTP Digest header parsing fix
|
#
8b26c93a |
| 25-Feb-2007 |
Daniel Stenberg |
Two new mirrors, but the total amount of mirrors still don't go up very much due to the frequent dying of mirrors...
|
#
b819c727 |
| 25-Feb-2007 |
Daniel Stenberg |
- Adam D. Moss made the HTTP CONNECT procedure less blocking when used from the multi interface. Note that it still does a part of the connection in a blocking manner.
|
#
f19d333e |
| 21-Feb-2007 |
Daniel Stenberg |
- Ravi Pratap provided work on libcurl making pipelining more robust and fixing some bugs: o Don't mix GET and POST requests in a pipeline o Fix the order in which requests are disp
- Ravi Pratap provided work on libcurl making pipelining more robust and fixing some bugs: o Don't mix GET and POST requests in a pipeline o Fix the order in which requests are dispatched from the pipeline o Fixed several curl bugs with pipelining when the server is returning chunked encoding: * Added states to chunked parsing for final CRLF * Rewind buffer after parsing chunk with data remaining * Moved chunked header initializing to a spot just before receiving headers
show more ...
|
#
83e07825 |
| 20-Feb-2007 |
Linus Nielsen Feltzing |
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour
|
#
c11681be |
| 19-Feb-2007 |
Dan Fandrich |
Mention curl-config dependencies fix.
|
#
1297c54b |
| 19-Feb-2007 |
Daniel Stenberg |
Ian Turner fixed the libcurl.m4 macro's support for --with-libcurl. AC_PATH_PROG was not used properly.
|
#
1045b8d3 |
| 19-Feb-2007 |
Daniel Stenberg |
- Shmulik Regev found a memory leak in re-used HTTPS connections, at least when the multi interface was used.
|
#
17e8d60c |
| 19-Feb-2007 |
Daniel Stenberg |
- Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and 5).
|
#
cbf58d88 |
| 18-Feb-2007 |
Daniel Stenberg |
- Jeff Pohlmeyer identified two problems: first a rather obscure problem with the multi interface and connection re-use that could make a curl_multi_remove_handle() ruin a pointer in anot
- Jeff Pohlmeyer identified two problems: first a rather obscure problem with the multi interface and connection re-use that could make a curl_multi_remove_handle() ruin a pointer in another handle. The second problem was less of an actual problem but more of minor quirk: the re-using of connections wasn't properly checking if the connection was marked for closure.
show more ...
|
#
aa4435c2 |
| 16-Feb-2007 |
Daniel Stenberg |
- Duncan Mac-Vicar Prett and Michal Marek reported problems with resetting CURLOPT_RANGE back to no range on an easy handle when using FTP.
|
#
4efa0d9f |
| 13-Feb-2007 |
Daniel Stenberg |
ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' on the left side of @ to make it short(er).
|
#
7f70dbca |
| 12-Feb-2007 |
Daniel Stenberg |
Rob Crittenden added support for NSS (Network Security Service) for the SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/
|
#
28b932fb |
| 12-Feb-2007 |
Daniel Stenberg |
- Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent to the debug callback. - Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and CURLOPT_HTTP_TRANSFE
- Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent 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.
show more ...
|
#
a6317411 |
| 12-Feb-2007 |
Daniel Stenberg |
Jeff Pohlmeyer for his bug fix today, but too specific to get desrcibed as a bugfix here ;-)
|
#
91386937 |
| 05-Feb-2007 |
Daniel Stenberg |
- Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution ins
- Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS 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.
show more ...
|
#
01c4fba1 |
| 05-Feb-2007 |
Yang Tse |
cookie expiry date in several test cases set to year 2030/2035
|
#
67d2dd62 |
| 03-Feb-2007 |
Daniel Stenberg |
- Yang Tse fixed the cookie expiry date in several test cases that started to fail since they used "1 feb 2007"... - Manfred Schwarb reported that socks5 support was broken and help us
- Yang Tse fixed the cookie expiry date in several test cases that started to fail since they used "1 feb 2007"... - Manfred Schwarb reported that socks5 support was broken and help us pinpoint the problem. The code now tries harder to use httproxy and proxy where apppropriate, as not all proxies are HTTP...
show more ...
|
#
d32f1390 |
| 02-Feb-2007 |
Yang Tse |
In testsuite, update test cookies expiration from 2007-Feb-1 to 2038-Feb-1
|
#
1eb530d8 |
| 30-Jan-2007 |
Daniel Stenberg |
start working on 7.16.2
|
Revision tags: curl-7_16_1 |
|
#
8680e010 |
| 29-Jan-2007 |
Daniel Stenberg |
the user-agent fix
|
#
abdbd310 |
| 29-Jan-2007 |
Daniel Stenberg |
- Michael Wallner reported that when doing a CONNECT with a custom User-Agent header, you got _two_ User-Agent headers in the CONNECT request...! Added test case 287 to verify the fix.
|
#
e5adab39 |
| 28-Jan-2007 |
Daniel Stenberg |
curl_easy_reset() now resets the CA bundle path correctly
|