#
090b89cc |
| 01-Jul-2004 |
Daniel Stenberg |
Variable type cleanups to please the picky MIPSPro compiler.
|
#
c39858aa |
| 24-Jun-2004 |
Daniel Stenberg |
Source cleanups. The major one being that we now _always_ use a Curl_addrinfo linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code.
|
Revision tags: pre-aifix |
|
#
dca63862 |
| 22-Jun-2004 |
Daniel Stenberg |
pass an int pointer when it expects an int pointer...
|
#
8e287210 |
| 21-Jun-2004 |
Daniel Stenberg |
The read callback can now return CURL_READFUNC_ABORT to stop a transfer.
|
#
a76288b9 |
| 16-Jun-2004 |
Daniel Stenberg |
Alexander Krasnostavsky fixed a flaw in the 3rd party transfer code that didn't properly check return code.
|
#
90037b85 |
| 09-Jun-2004 |
Daniel Stenberg |
Alexander Krasnostavsky's fix to make libcurl build fine with configure --disable-http, which thus builds a libcurl without HTTP support.
|
#
ea81dd9e |
| 03-Jun-2004 |
Daniel Stenberg |
Alexander Krasnostavsky's FTP third party transfer (proxy) support
|
Revision tags: curl-7_12_0 |
|
#
fd802db3 |
| 25-May-2004 |
Daniel Stenberg |
initial support for "uploading" to file:// URLs
|
#
80019211 |
| 17-May-2004 |
Daniel Stenberg |
I made Curl_done() take a pointer-pointer in the first argument instead, and if the connection is killed it blanks the pointer it points to, to make it easier to detect usage problems whereev
I made Curl_done() take a pointer-pointer in the first argument instead, and if the connection is killed it blanks the pointer it points to, to make it easier to detect usage problems whereever Curl_done() is used.
show more ...
|
#
6176f141 |
| 17-May-2004 |
Daniel Stenberg |
fixed a warning on IRIX, deleted trailing whitespace
|
#
d60c2257 |
| 12-May-2004 |
Daniel Stenberg |
Curl_done() and the protocol-specific conn->curl_done() functions now all take a CURLcode as a second argument, that is non-zero when Curl_done() is called after an error was returned from Cu
Curl_done() and the protocol-specific conn->curl_done() functions now all take a CURLcode as a second argument, that is non-zero when Curl_done() is called after an error was returned from Curl_do() (or similar).
show more ...
|
#
a219d774 |
| 12-May-2004 |
Daniel Stenberg |
even if Curl_do() fails, we must call Curl_done() to do proper cleaning up
|
#
c9bab31a |
| 12-May-2004 |
Daniel Stenberg |
use size_t better for buffer and alloc lengths
|
#
85313401 |
| 11-May-2004 |
Daniel Stenberg |
minor leak in case of error, thanks to "./runtests.pl -n -t 25"
|
#
bbafb2eb |
| 11-May-2004 |
Daniel Stenberg |
curl_global_init_mem() allows the memory functions to be replaced. memory.h is included everywhere for this.
|
#
4d9517f0 |
| 05-May-2004 |
Daniel Stenberg |
prevent warnings when using the gcc option -Wunreachable-code
|
#
fc6eff13 |
| 04-May-2004 |
Daniel Stenberg |
General HTTP authentication cleanup and fixes
|
#
4b9f8e76 |
| 27-Apr-2004 |
Daniel Stenberg |
Made host name and proxy name get stored in a 'struct hostname' and set all things up to work with encoded host names internally, as well as keeping 'display names' to show in debug messages.
Made host name and proxy name get stored in a 'struct hostname' and set all things up to work with encoded host names internally, as well as keeping 'display names' to show in debug messages. IDN resolves work for me now using ipv6, ipv4 and ares resolving. Even cookies on IDN sites seem to do right.
show more ...
|
#
712c67b4 |
| 26-Apr-2004 |
Daniel Stenberg |
no longer include curl/types.h, it serves no purpose
|
#
9befc682 |
| 26-Apr-2004 |
Daniel Stenberg |
added many comments
|
Revision tags: curl-7_11_2 |
|
#
2ff30d06 |
| 22-Apr-2004 |
Daniel Stenberg |
- David Byron found and fixed a small bug with the --fail and authentication stuff added a few weeks ago. Turns out that if you specify --proxy-ntlm and communicate with a proxy that req
- David Byron found and fixed a small bug with the --fail and authentication stuff added a few weeks ago. Turns out that if you specify --proxy-ntlm and communicate with a proxy that requires basic authentication, the proxy properly returns a 407, but the failure detection code doesn't realize it should give up, so curl returns with exit code 0. Test case 162 verifies this.
show more ...
|
#
1401d909 |
| 21-Apr-2004 |
Daniel Stenberg |
Fix the "lingering close" problem when re-using a connection, as test case 160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was
Fix the "lingering close" problem when re-using a connection, as test case 160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was left alive when we were done using it before, but that was closed when we wanted to read from it again. Bad luck. Retry the same request on a fresh connect! Deleted the sockerror variable again, it serves no purpose anymore.
show more ...
|
#
b7a76004 |
| 20-Apr-2004 |
Daniel Stenberg |
Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed- length limit of the hostname part of the URL.
|
Revision tags: c-ares-1_2_0 |
|
#
ee7d1d07 |
| 13-Apr-2004 |
Daniel Stenberg |
remove an long time #defined struct member and use the actual "real" name instead to make it easier to find/read
|
#
72b1144b |
| 07-Apr-2004 |
Daniel Stenberg |
getting only a 100 Continue response and nothing else, when talking HTTP, is now treated as an error by libcurl
|