Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-02 | Paul Nolan fix to make libcurl build nicely on Windows CE | Daniel Stenberg | |
2004-10-25 | Tomas Pospisek filed bug report #1053287 that proved -C - and --fail on a | Daniel Stenberg | |
file that was already completely downloaded caused an error, while it doesn't if you don't use --fail! I added test case 194 to verify the fix. Grrr. CURLOPT_FAILONERROR is now added to the list stuff to remove in libcurl v8 due to all the kludges needed to support it. | |||
2004-10-19 | Alexander Krasnostavsky made it possible to make FTP 3rd party transfers with | Daniel Stenberg | |
both source and destination being the same host. It can be useful if you want to move a file on a server or similar. | |||
2004-10-06 | Chih-Chung Chang reported that if you use CURLOPT_RESUME_FROM and enabled | Daniel Stenberg | |
CURLOPT_FOLLOWLOCATION, libcurl reported error if a redirect happened even if the new URL would provide the resumed file. Test case 188 added to verify the fix (together with existing test 99). | |||
2004-09-16 | Location: problem with bad original URL, identified in bug report #1029478 | Daniel Stenberg | |
2004-09-13 | no longer includes getdate.h, there's no need for it | Daniel Stenberg | |
2004-08-30 | Make "Proxy-Connection: close" close the current proxy connection, as | Daniel Stenberg | |
Roman Koifman found out. | |||
2004-08-20 | Alexander Krasnostavsky made the write callback get called even when a zero | Daniel Stenberg | |
byte file is downloaded. | |||
2004-08-10 | more typecasts to please picky compilers | Daniel Stenberg | |
2004-08-09 | typecast the assigment of an unsigned variable to a signed one to prevent | Daniel Stenberg | |
picky warnings | |||
2004-08-09 | ->fread() should get a size_t variable passed in | Daniel Stenberg | |
2004-07-16 | deal with negative Content-Length: headers by ignoring the info | Daniel Stenberg | |
2004-07-01 | Variable type cleanups to please the picky MIPSPro compiler. | Daniel Stenberg | |
2004-06-24 | Source cleanups. The major one being that we now _always_ use a Curl_addrinfo | Daniel Stenberg | |
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. | |||
2004-06-22 | pass an int pointer when it expects an int pointer... | Daniel Stenberg | |
2004-06-21 | The read callback can now return CURL_READFUNC_ABORT to stop a transfer. | Daniel Stenberg | |
2004-06-16 | Alexander Krasnostavsky fixed a flaw in the 3rd party transfer code that | Daniel Stenberg | |
didn't properly check return code. | |||
2004-06-09 | Alexander Krasnostavsky's fix to make libcurl build fine with configure | Daniel Stenberg | |
--disable-http, which thus builds a libcurl without HTTP support. | |||
2004-06-03 | Alexander Krasnostavsky's FTP third party transfer (proxy) support | Daniel Stenberg | |
2004-05-25 | initial support for "uploading" to file:// URLs | Daniel Stenberg | |
2004-05-17 | I made Curl_done() take a pointer-pointer in the first argument instead, and | Daniel Stenberg | |
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. | |||
2004-05-17 | fixed a warning on IRIX, deleted trailing whitespace | Daniel Stenberg | |
2004-05-12 | Curl_done() and the protocol-specific conn->curl_done() functions now all | Daniel Stenberg | |
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). | |||
2004-05-12 | even if Curl_do() fails, we must call Curl_done() to do proper cleaning up | Daniel Stenberg | |
2004-05-12 | use size_t better for buffer and alloc lengths | Daniel Stenberg | |
2004-05-11 | minor leak in case of error, thanks to "./runtests.pl -n -t 25" | Daniel Stenberg | |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-05-05 | prevent warnings when using the gcc option -Wunreachable-code | Daniel Stenberg | |
2004-05-04 | General HTTP authentication cleanup and fixes | Daniel Stenberg | |
2004-04-27 | Made host name and proxy name get stored in a 'struct hostname' and set | Daniel Stenberg | |
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. | |||
2004-04-26 | no longer include curl/types.h, it serves no purpose | Daniel Stenberg | |
2004-04-26 | added many comments | Daniel Stenberg | |
2004-04-22 | - David Byron found and fixed a small bug with the --fail and authentication | Daniel Stenberg | |
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. | |||
2004-04-21 | Fix the "lingering close" problem when re-using a connection, as test case | Daniel Stenberg | |
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. | |||
2004-04-20 | Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed- | Daniel Stenberg | |
length limit of the hostname part of the URL. | |||
2004-04-13 | remove an long time #defined struct member and use the actual "real" name | Daniel Stenberg | |
instead to make it easier to find/read | |||
2004-04-07 | getting only a 100 Continue response and nothing else, when talking HTTP, | Daniel Stenberg | |
is now treated as an error by libcurl | |||
2004-04-07 | renamed the strtoofft() macro to curlx_strtoofft() to adjust to the curlx_* | Daniel Stenberg | |
concept, and added lib/README.curlx to explain details about it | |||
2004-04-06 | New authentication code added, particularly noticable when doing POST or PUT | Daniel Stenberg | |
with Digest or NTLM. libcurl will now use HEAD to negotiate the authentication and when done perform the requested POST. | |||
2004-03-30 | David Byron made CURLOPT_FAILONERROR work with authentications such as NTLM | Daniel Stenberg | |
or Digest. | |||
2004-03-22 | Makes CURLINFO_CONTENT_LENGTH_DOWNLOAD work even if CURLOPT_NOBODY is set | Daniel Stenberg | |
true. | |||
2004-03-16 | removed the min() macro define | Daniel Stenberg | |
2004-03-11 | Gisle Vanem's fixes to use CURL_SOCKET_BAD more instead of -1 for sockets. | Daniel Stenberg | |
2004-03-10 | Use more curl_off_t variables when doing the progress meter calculations and | Daniel Stenberg | |
argument passing and try to convert to double only when providing data to the external world. | |||
2004-03-10 | curl_socket_t mistakes cleanup | Daniel Stenberg | |
2004-03-09 | Use curl_socket_t instead of int for holding sockets. The typedefs and | Daniel Stenberg | |
defines are in setup.h. | |||
2004-03-05 | more fixing to make the progress/getinfo stuff to work properly when doing | Daniel Stenberg | |
file: transfers too | |||
2004-03-02 | Yet another curl_off_t printf format attempt, we now exclude the %-letter from | Daniel Stenberg | |
FORMAT_OFF_T to allow additional options to get specified, like with '"%5" FORMAT_OFF_T'. | |||
2004-03-02 | use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity of | Daniel Stenberg | |
having to redef that name | |||
2004-03-01 | Now uses CURL_FORMAT_OFF_T instead of %Od | Daniel Stenberg | |
Fixed the check for bad resumes. Made test case 99 work and proved a bug in test case ... eh, was it 32? |