Age | Commit message (Collapse) | Author | |
---|---|---|---|
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? | |||
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-18 | removed some "jhrg" from comments | Daniel Stenberg | |
2004-02-15 | CURLcode/int cleanup to reduce IRIX warnings | Daniel Stenberg | |
Removed some dates/names in the comments. | |||
2004-02-13 | Greg Hewgill found out 'contentlength' wasn't big enough to hold a large file! | Daniel Stenberg | |
2004-02-06 | The MIPSPro compiler complains on constructs such as "(void)foo;" so | Daniel Stenberg | |
we avoid it where possible. | |||
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 | make sure the connection is closed when it was detected reset! | Daniel Stenberg | |
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-28 | Chunked-transfers should have an additional CRLF after the final 0 CRLF | Daniel Stenberg | |
sequence. | |||
2004-01-22 | use curl_off_t instead of off_t! | Daniel Stenberg | |
2004-01-21 | use the proper timecond defines, not the obsolete ones! | Daniel Stenberg | |
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-18 | redirect from a bad url such as "www.com?moo=foo" to an absolute path didn't | Daniel Stenberg | |
work, as reported by John McGowan | |||
2003-12-10 | assert that we get a good index to Curl_transfer() | Daniel Stenberg | |
2003-12-03 | Ignore content-length when chunked transfer-encoding is transfered. | Daniel Stenberg | |
2003-12-02 | fix compiler warnings | Daniel Stenberg | |
2003-12-02 | If HAVE_MSG_NOSIGNAL is set, we use MSG_NOSIGNAL when we call send() and | Daniel Stenberg | |
recv() and we no longer attempt to ignore the SIGPIPE signal. | |||
2003-11-24 | FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe it | Daniel Stenberg | |
2003-11-20 | combine the two identical cases | Daniel Stenberg | |
2003-11-06 | unitialized variable fix, reported by both Marty Kuhrt and benjamin gerard | Daniel Stenberg | |
2003-10-24 | Resuming a download of an already downloaded document, that is trying to get | Daniel Stenberg | |
a range of a document beyond its size, caused libcurl to "hang" until the server closed the connection and then it returned error 18. This is bad. This way, we don't return any error at all, which isn't nice either, as we need to alert the app somehow that the request range was out of size. | |||
2003-10-22 | Do the auth stuff at the end-of-headers and not at the start-of-body, as | Daniel Stenberg | |
we might not get a body when we get a 401 with a set of WWW-Authenticate: headers. This fixes the problem Kevin Roth detected in 7.10.8-pre4 and pre5. Verified by test case 91. | |||
2003-10-18 | fixed gcc -Wshadow warnings | Daniel Stenberg | |
2003-10-17 | Dominick Meglio implemented CURLOPT_MAXFILESIZE and --max-filesize. | Daniel Stenberg | |
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-09-03 | Re-arranged code to make the proxy-CONNECT loop able to do some of the | Daniel Stenberg | |
authentication negotiations needed for NTLM, Digest etc. | |||
2003-08-29 | typecast to prevent compiler warning | Daniel Stenberg | |
2003-08-20 | transfer fix for multi interface | Daniel Stenberg | |
2003-08-14 | Curl_SSL_InitSessions can return error, so check the return code and bail | Daniel Stenberg | |
out if necessary | |||
2003-08-11 | Serge Semashko added CURLOPT_PROXYAUTH support, and now NTLM for proxies | Daniel Stenberg | |
work. |