54cbd7e1 | 01-Feb-2006 |
Daniel Stenberg |
Make --limit-rate [num] mean bytes. Seems I broke it back in november 2005... |
5994b629 | 30-Jan-2006 |
Gisle Vanem |
Squelch the "warning: 'port' might be used uninitialized in this function". (occurs w/o ENABLE_IPV6). |
2fbf94b0 | 30-Jan-2006 |
Daniel Stenberg |
Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the curl tool with --local-port. Plain and simply set the range of ports to bind the local end of connections to. Imple
Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the curl tool with --local-port. Plain and simply set the range of ports to bind the local end of connections to. Implemented on to popular demand. Not extensively tested. Please let me know how it works.
show more ...
|
32bc30e2 | 30-Jan-2006 |
Daniel Stenberg |
Based on an error report by Philippe Vaucher, we no longer count a retried connection setup as a follow-redirect. It turns out 1) this fails when a FTP connection is re-setup and 2) it does m
Based on an error report by Philippe Vaucher, we no longer count a retried connection setup as a follow-redirect. It turns out 1) this fails when a FTP connection is re-setup and 2) it does make the max-redirs counter behave wrong. This fix was not verified since the reporter vanished, but I believe this is the right fix nonetheless.
show more ...
|
f3bc8e6c | 29-Jan-2006 |
Daniel Stenberg |
more mirrors |
16f3a32b | 28-Jan-2006 |
Daniel Stenberg |
we should fix the system includes in the public headers to be based on checks of the system instead of depending on what particular systems we think need various headers |
c44d2498 | 28-Jan-2006 |
Daniel Stenberg |
include sys/select.h on NetBSD as well |
2aed209e | 27-Jan-2006 |
Daniel Stenberg |
typo pointed out by Mike Griffiths |
b55b780d | 27-Jan-2006 |
Daniel Stenberg |
Cyrill Osterwalder pointed out that sending "" as data in a header is in fact equal to a blank one according to the spec. |
8d4eb2bc | 26-Jan-2006 |
Daniel Stenberg |
updated source header |
67bf4f28 | 24-Jan-2006 |
Daniel Stenberg |
Michal Marek provided a patch for FTP that makes libcurl continue to try PASV even after EPSV returned a positive response code, if libcurl failed to connect to the port number the EPSV respo
Michal Marek provided a patch for FTP that makes libcurl continue to try PASV even after EPSV returned a positive response code, if libcurl failed to connect to the port number the EPSV response said. Obviously some people are going through protocol-sensitive firewalls (or similar) that don't understand EPSV and then they don't allow the second connection unless PASV was used. This also called for a minor fix of test case 238.
show more ...
|
803582f8 | 20-Jan-2006 |
Dan Fandrich |
Fixed some statements about handling multiple occurrences of options. Tried to make some of the wording a bit more consistent. |
03603f39 | 20-Jan-2006 |
Daniel Stenberg |
the second -P fix |
fcfd6d95 | 19-Jan-2006 |
Daniel Stenberg |
Duane Cathey was one of our friends who reported that curl -P [IP] (CURLOPT_FTPPORT) didn't work for ipv6-enabed curls if the IP wasn't a "native" IP while it works fine for ipv6-disabled bui
Duane Cathey was one of our friends who reported that curl -P [IP] (CURLOPT_FTPPORT) didn't work for ipv6-enabed curls if the IP wasn't a "native" IP while it works fine for ipv6-disabled builds! In the process of fixing this, I removed the support for LPRT since I can't think of many reasons to keep doing it and asking on the mailing list didn't reveal anyone else that could either. The code that sends EPRT and PORT is now also a lot simpler than before (IMHO).
show more ...
|
c31451cf | 19-Jan-2006 |
Daniel Stenberg |
Jon Turner pointed out that doing -P [hostname] with curl (built ipv4-only) didn't work. |
5deff1a1 | 19-Jan-2006 |
Daniel Stenberg |
clarify what "-P -" does |
e236a1c9 | 19-Jan-2006 |
Daniel Stenberg |
corrected factual mistake about BSD license in the krb4.c code |
a2f3094e | 18-Jan-2006 |
Daniel Stenberg |
reality sync |
65afc576 | 18-Jan-2006 |
Daniel Stenberg |
configure no longer warns on "missing" if the current path contains a space |
8971f656 | 17-Jan-2006 |
Daniel Stenberg |
David Shaw: Here is the latest libcurl.m4 autoconf tests. It is updated with the latest features and protocols that libcurl supports and has a minor fix to better deal with the obscure case
David Shaw: Here is the latest libcurl.m4 autoconf tests. It is updated with the latest features and protocols that libcurl supports and has a minor fix to better deal with the obscure case where someone has more than one libcurl installed at the same time.
show more ...
|
394ce9ee | 17-Jan-2006 |
Daniel Stenberg |
happy new year! |
67a83c1b | 16-Jan-2006 |
Daniel Stenberg |
David Shaw finally removed all traces of Gopher and we are now officially not supporting it. It hasn't been functioning for years anyway, so this is just finally stating what already was true
David Shaw finally removed all traces of Gopher and we are now officially not supporting it. It hasn't been functioning for years anyway, so this is just finally stating what already was true. And a cleanup at the same time.
show more ...
|
1e8d0942 | 16-Jan-2006 |
Daniel Stenberg |
improved the description of the -L/--location option |
4c35a408 | 15-Jan-2006 |
Daniel Stenberg |
Bryan Henderson turned the 'initialized' variable for curl_global_init() into a counter, and thus you can now do multiple curl_global_init() and you are then supposed to do the same amount of
Bryan Henderson turned the 'initialized' variable for curl_global_init() into a counter, and thus you can now do multiple curl_global_init() and you are then supposed to do the same amount of calls to curl_global_cleanup(). Bryan also updated the docs accordingly.
show more ...
|
802b2aaf | 15-Jan-2006 |
Daniel Stenberg |
adjusted to use curl_multi_setopt() to set the callback |