Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-25 | tcp-nodelay patch by Joe Halpin | 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 | Gisle Vanem's fixes to use CURL_SOCKET_BAD more instead of -1 for sockets. | Daniel Stenberg | |
2004-03-10 | curl_socket_t mistakes cleanup | Daniel Stenberg | |
2004-03-04 | prevent harmless compiler warning | Daniel Stenberg | |
2004-03-02 | corrected the reuse_fresh condition | Daniel Stenberg | |
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 | Use CURL_FORMAT_OFF_T for printf()inf curl_off_t variables. | Daniel Stenberg | |
2004-03-01 | Only consider the fresh-connection option on the first connection made, not | Daniel Stenberg | |
on followed redirections etc. This should fix the bug #905365, which caused NTLM to fail with the option set. | |||
2004-03-01 | in Curl_disonnect(): call the protocol-specific disconnect function before we | Daniel Stenberg | |
unlink the "current" connection struct from the connection cache. | |||
2004-02-22 | the missing part of Gisle Vanem's connect-timeout fix for win32 | Daniel Stenberg | |
2004-02-16 | Make the 'areschannel' get created in the curl_easy_init() and re-use that | Daniel Stenberg | |
same channel during the whole curl handle's life until curl_easy_cleanup(). | |||
2004-02-16 | Fix verbosconnect() when ipv6-enabled to not assume that conn->serv_addr | Daniel Stenberg | |
is a valid pointer, but instead always depend on the passed-in dns pointer. This happens to be NULL when the connection is re-used... | |||
2004-02-16 | Jeff Lawson pointed out that we need to check for a '5' in the version field | Daniel Stenberg | |
to properly work with SOCKS5 proxies. I also included some ascii art describing the SOCKS5 response, as RFC1928 describes. Jeff provided details in bug report #741841 and here: http://curl.haxx.se/mail/lib-2004-02/0181.html | |||
2004-02-13 | in the socks code, make sure we receive Curl_read results in ints and | Daniel Stenberg | |
Curl_write in CURLcode, to keep the picky compilers happy | |||
2004-02-12 | No longer receive the return code in ConnectionKillOne() that wasn't dealt | Daniel Stenberg | |
with anyway and thus caused picky compiler to warn. | |||
2004-02-11 | #if-check for SIGALRM before assuming it is present | Daniel Stenberg | |
2004-02-05 | options we get as longs need to be typecasted when assigned to prevent | Daniel Stenberg | |
picky compiler warnings | |||
2004-02-02 | when including ca-bundle.h, don't look in the current dir first, simply use | Daniel Stenberg | |
the search path since we want the build-version rather than the one in the source dir | |||
2004-01-26 | when saving in a cookie jar fails, include the file name in the error message | Daniel Stenberg | |
to make it easier to track down | |||
2004-01-23 | Proxy username and password on persistant connections could easily get | Daniel Stenberg | |
messed up. Vincent Bronner detected this. | |||
2004-01-23 | check the arguments to the socks5 function, as the name and password might | Daniel Stenberg | |
be NULL pointers, and if non-NULL if now support zero-length names/passwords | |||
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-19 | Make setopt() support CURLOPT_IPRESOLVE... | Daniel Stenberg | |
2003-12-19 | Gisle Vanem's minor fixes | Daniel Stenberg | |
2003-12-15 | added a library-wide interface for doing dns cache pruning, and no longer | Daniel Stenberg | |
make the pruning at each name lookup, only in Curl_done(). | |||
2003-12-15 | Giuseppe Attardi fixed a really tricky bug | Daniel Stenberg | |
2003-12-02 | use the HAVE_KRB4 define instead of just KRB4 | Daniel Stenberg | |
2003-12-02 | Gisle Vanem fixed the check-order for FTPS and FTP. | Daniel Stenberg | |
2003-11-24 | FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe it | Daniel Stenberg | |
2003-11-24 | Gaz Iqbal fixed a range string memory leak! | Daniel Stenberg | |
2003-11-19 | respect bits.close even if an error already is set, but make sure that the | Daniel Stenberg | |
existing error is the one returned back | |||
2003-11-11 | Added CURLOPT_NETRC_FILE. | Daniel Stenberg | |
2003-10-29 | David Hull made the file: URL parser also accept the somewhat sloppy file | Daniel Stenberg | |
syntax: file:/path. I added test case 203 to verify this. | |||
2003-10-28 | overlapping memory chunks with strcpy(), detected by the friendly valgrind | Daniel Stenberg | |
2003-10-21 | conn->user and conn->passwd will now always be set to point to something. | Daniel Stenberg | |
If not user or password is set, they will point to a "" string. | |||
2003-10-18 | gcc -Wshadow complaints fixed | Daniel Stenberg | |
2003-10-17 | Dominick Meglio implemented CURLOPT_MAXFILESIZE and --max-filesize. | Daniel Stenberg | |
2003-10-17 | o the name and password arrays are 256 bytes, so let's accept that lengthy | Daniel Stenberg | |
input o have ->passwd and ->name be NULL if no name/passwd was given o only set default user+password for FTP if no userpwd was given | |||
2003-10-16 | password promting support removed from libcurl | Daniel Stenberg | |
2003-10-14 | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | |
2003-10-09 | Lachlan O'Dea fixed a resume problem: "If I set CURLOPT_RESUME_FROM, perform | Daniel Stenberg | |
an HTTP download, then reset CURLOPT_RESUME_FROM to 0, the next download still has a Range header with a garbage value." bug report #820502 | |||
2003-09-19 | Markus Moeller's SPNEGO patch applied, with my edits, additions and minor | Daniel Stenberg | |
cleanups. | |||
2003-09-15 | If a connection is closed down and it had some kind of NTLM involved, we | Daniel Stenberg | |
reset the authentication state to make it restart on the next connection. This of course because NTLM is connection-oriented, whilst all other authentication schemes are not. | |||
2003-09-03 | Early Ehlinger's CURLOPT_FTP_RESPONSE_TIMEOUT patch applied. | Daniel Stenberg | |