Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-07 | We don't support any long protocol names so we can use a smaller buffer. | Daniel Stenberg | |
Also, make sure we have room for the trailing zero, only scan to size-1. Gisle Vanem reported. | |||
2004-05-04 | General HTTP authentication cleanup and fixes | Daniel Stenberg | |
2004-04-29 | Luca Altea's major HTTP Digest update | 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 | IDN adjustments and host cleanups by Gisle | Daniel Stenberg | |
2004-04-26 | Major hostip.c cleanup and split into multiple files and easier #ifdef | Daniel Stenberg | |
usage. | |||
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-15 | removed the fixed dir depth limit in the FTP code | Daniel Stenberg | |
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-13 | Moved the 'tcp_nodelay' member to the proper 'UserDefined' struct within the | Daniel Stenberg | |
sessionhandle to make the duphandle() function work as supposed. Also tried to start document functions the doxygen way (in the headers of the functions). Can't make it work though... | |||
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-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 | added stale boolean to the digest struct | Daniel Stenberg | |
2004-03-30 | David Byron added 'authdone' to the SessionHandle. | Daniel Stenberg | |
2004-03-25 | tcp-nodelay patch by Joe Halpin | Daniel Stenberg | |
2004-03-24 | Gisle Vanem's fix to replace the bad use of strerror(). This introduces | Daniel Stenberg | |
Curl_strerror() that attempts to be thread-safe _and_ works on Windows too! | |||
2004-03-23 | keep current_speed as an curl_off_t for better precision at higher speeds | Daniel Stenberg | |
if large file support is available | |||
2004-03-12 | more variable type fixes for the large POST support | Daniel Stenberg | |
2004-03-12 | Added CURLOPT_POSTFIELDSIZE_LARGE to offer a large file version of the | Daniel Stenberg | |
CURLOPT_POSTFIELDSIZE option to allow really big HTTP POSTs. | |||
2004-03-11 | Made max5data() take a curl_off_t size as argument instead of double. Should | Daniel Stenberg | |
make the progress meter more accurate for large files. Also made the sprintf usage in that function avoid floating point. | |||
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-09 | Use curl_socket_t instead of int for holding sockets. The typedefs and | Daniel Stenberg | |
defines are in setup.h. | |||
2004-03-03 | make the backup variable of the same kind as the data it backups! ;-) | Daniel Stenberg | |
2004-03-03 | rename struct FILE to FILEPROTO, to prevent it from causing trouble with | Daniel Stenberg | |
the plain old FILE typedef. | |||
2004-02-27 | Joe Halpin made the FTP code send 'QUIT' on the control connection before | Daniel Stenberg | |
it disconnects the TCP connection, like a good ftp client should! | |||
2004-02-26 | Clear up int/long/size_t/ssize_t usage a bit | Daniel Stenberg | |
2004-02-22 | the missing part of Gisle Vanem's connect-timeout fix for win32 | Daniel Stenberg | |
2004-02-20 | we call the macro CURLMAX() isntead of MAX(), just because it turned up | Daniel Stenberg | |
it collides with another MAX define on some platforms (like netbsd 1.6.1) | |||
2004-02-02 | set the 'retry' bit to TRUE when the connection is about to be retried, | Daniel Stenberg | |
this allows the HTTP code to *not* return a failure just because no data has been received from the server | |||
2004-01-30 | Somewhat crude attempt at fixing the test 91 failures. I commit this now | Daniel Stenberg | |
so that the automatic testing hosts will test these changes over the weekend. | |||
2004-01-22 | use curl_off_t instead of off_t! | Daniel Stenberg | |
2004-01-22 | use the proper type for formposts, not the deprecated one | Daniel Stenberg | |
2004-01-11 | Dominick Meglio pointed out FTPS should use default port 990 according to | Daniel Stenberg | |
IANA. | |||
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2004-01-05 | David J Meyer's large file support. | Daniel Stenberg | |
2003-12-03 | Ignore content-length when chunked transfer-encoding is transfered. | Daniel Stenberg | |
2003-12-02 | use the HAVE_KRB4 define instead of just KRB4 | Daniel Stenberg | |
2003-11-24 | FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe it | Daniel Stenberg | |
2003-11-24 | fixed wrong comment | Daniel Stenberg | |
2003-11-11 | Added CURLOPT_NETRC_FILE. | Daniel Stenberg | |
2003-11-07 | remove the struct fields for the deprecated passwd prompt callback | Daniel Stenberg | |
2003-10-18 | gcc -Wshadow complaints fixed | Daniel Stenberg | |
2003-10-17 | Dominick Meglio implemented CURLOPT_MAXFILESIZE and --max-filesize. | Daniel Stenberg | |
2003-09-19 | Added CURLOPT_IPRESOLVE support | Daniel Stenberg | |
2003-09-19 | Markus Moeller's SPNEGO patch applied, with my edits, additions and minor | Daniel Stenberg | |
cleanups. | |||
2003-09-11 | Tim Bartley's patch that makes the GSSNEGOTIATE option work for Microsoft's | Daniel Stenberg | |
"Negotiate" authentication as well. | |||
2003-09-04 | Based on Joerg Mueller-Tolk's patch, this introduces support for | Daniel Stenberg | |
CURLINFO_HTTPAUTH_AVAIL and CURLINFO_PROXYAUTH_AVAIL | |||
2003-09-03 | Early Ehlinger's CURLOPT_FTP_RESPONSE_TIMEOUT patch applied. | Daniel Stenberg | |