Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-13 | uses select() instead of poll() even on Mac OS X 10.4 | Daniel Stenberg | |
2005-05-12 | -z bad use warning and NTLM proxy auth in reconnect fix | Daniel Stenberg | |
2005-05-11 | the new HTTP headers | Daniel Stenberg | |
2005-05-09 | new counter | Daniel Stenberg | |
2005-05-09 | new mirror, added amount of contributors | Daniel Stenberg | |
2005-05-06 | one more command line option, fixed the AIX 4.3 enabled IPv6 build (it now | Daniel Stenberg | |
detects a bad Ipv6 situation and disables it automatically) | |||
2005-05-02 | Added --trace-time that when used adds a time stamp to each trace line that | Daniel Stenberg | |
--trace, --trace-ascii and --verbose output. I also made the '>' display separate each line on the linefeed so that HTTP requests etc look nicer in the -v output. | |||
2005-05-02 | two bugs, one change | Daniel Stenberg | |
2005-04-29 | more fixes | Daniel Stenberg | |
2005-04-26 | fixing | Daniel Stenberg | |
2005-04-23 | 2 days, 4 fixes | Daniel Stenberg | |
2005-04-18 | two bugfixes of today | Daniel Stenberg | |
2005-04-12 | next release will be version 7.14.0 thanks to the added GnuTLS support | Daniel Stenberg | |
2005-04-10 | HTTP 304 response with Content-Length: header | Daniel Stenberg | |
2005-04-07 | GnuTLS! | Daniel Stenberg | |
2005-04-05 | restart with a blank page again | Daniel Stenberg | |
2005-04-04 | win resolve crash, win makefile fix | Daniel Stenberg | |
2005-04-03 | fix of tonight | Daniel Stenberg | |
2005-03-30 | fix configure's SSL-detection for msys/mingw (from Andres Garcia) | Daniel Stenberg | |
2005-03-29 | Better connection keep-alive when POSTing with HTTP Digest or Negotiate. | Daniel Stenberg | |
2005-03-29 | proxy multi auth fix, --proxy-anyauth, ftp-ssl and ftp response reading fix | Daniel Stenberg | |
2005-03-18 | a Common Lisp binding | Daniel Stenberg | |
2005-03-16 | more | Daniel Stenberg | |
2005-03-14 | configure --enable-sspi | Daniel Stenberg | |
2005-03-12 | found a common lisp binding | Daniel Stenberg | |
2005-03-12 | --form-string | Daniel Stenberg | |
2005-03-09 | configure, socks, debug, getdate | Daniel Stenberg | |
2005-03-08 | Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTP | Daniel Stenberg | |
file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some conditions from the previous FTP code was not properly brought into the new FTP code. I fixed and I added test case 520 to verify. (This bug was introduced in 7.13.1) | |||
2005-03-04 | Added test case 235 that makes a resumed upload of a file that isn't present | Daniel Stenberg | |
on the remote side. This then converts the operation to an ordinary STOR upload. This was requested/pointed out by Ignacio Vazquez-Abrams. It also proved (and I fixed) a bug in the newly rewritten ftp code (and present in the 7.13.1 release) when trying to resume an upload and the servers returns an error to the SIZE command. libcurl then loops and sends SIZE commands infinitely. | |||
2005-03-04 | starting over | Daniel Stenberg | |
2005-03-04 | stand clear for release time | Daniel Stenberg | |
2005-03-04 | Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activate | Daniel Stenberg | |
the cookie "engine" without having to provide an empty or non-existing file. | |||
2005-03-04 | Rene Rebe fixed a -# crash when more data than expected was retrieved. | Daniel Stenberg | |
2005-03-03 | new VB binding | Daniel Stenberg | |
2005-03-03 | mention buffer overflows fixed | Daniel Stenberg | |
2005-02-18 | Ralph Mitchell reported a flaw when you used a proxy with auth, and you | Daniel Stenberg | |
requested data from a host and then followed a redirect to another host. libcurl then didn't use the proxy-auth properly in the second request, due to the host-only check for original host name wrongly being extended to the proxy auth as well. Added test case 233 to verify the flaw and that the fix removed the problem. | |||
2005-02-18 | socket leak, mingw build | Daniel Stenberg | |
2005-02-16 | Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth" | Daniel Stenberg | |
that picks NTLM. Thanks to David Byron letting me test NTLM against his servers, I could quickly repeat and fix the problem. It turned out to be: When libcurl POSTs without knowing/using an authentication and it gets back a list of types from which it picks NTLM, it needs to either continue sending its data if it keeps the connection alive, or not send the data but close the connection. Then do the first step in the NTLM auth. libcurl didn't send the data nor close the connection but simply read the response-body and then sent the first negotiation step. Which then failed miserably of course. The fixed version forces a connection if there is more than 2000 bytes left to send. | |||
2005-02-11 | Removed all uses of strftime() since it uses the localised version of the | Daniel Stenberg | |
week day names and month names and servers don't like that. | |||
2005-02-10 | valgrind stuff for test suite, vms build and more | Daniel Stenberg | |
2005-02-01 | and we start over again | Daniel Stenberg | |
2005-02-01 | 7.13 coming up | Daniel Stenberg | |
2005-01-28 | Stephen More pointed out that CURLOPT_FTPPORT and the -P option didn't work | Daniel Stenberg | |
when built ipv6-enabled. I've now made a fix for it. Writing test cases for custom port strings turned too tricky so unfortunately there's none. | |||
2005-01-25 | Ian Ford asked about support for the FTP command ACCT, and I discovered it is | Daniel Stenberg | |
present in RFC959... so now (lib)curl supports it as well. --ftp-account and CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account string after PASS have been sent away. The client responds with "ACCT [account string]".) Added test case 228 and 229 to verify the functionality. Updated the test FTP server to support ACCT somewhat. | |||
2005-01-25 | new web mirror | Daniel Stenberg | |
2005-01-23 | two options less | Daniel Stenberg | |
2005-01-21 | FTP third transfer support overhaul. See CHANGES for details. | Daniel Stenberg | |
2005-01-20 | Philippe Hameau found out that -Q "+[command]" didn't work, although some code | Daniel Stenberg | |
was written for it. I fixed and added test case 227 to verify it. The curl.1 man page didn't mention the '+' so I added it. | |||
2005-01-19 | today's proxy fixes | Daniel Stenberg | |
2005-01-18 | Cody Jones' enhanced version of Samuel Díaz García's MSVC makefile patch. | Daniel Stenberg | |