aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-06-24Yet another resolve code re-orgDaniel Stenberg
2004-06-24Source cleanups. The major one being that we now _always_ use a Curl_addrinfoDaniel Stenberg
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code.
2004-06-23static functions are better not Curl_ prefixed to make their staticDaniel Stenberg
status more obvious
2004-06-23When adding the return -1 to prevent warnings on some compilers, othersDaniel Stenberg
started complaining since it won't be reached... So I removed the call to abort() and just return -1 instead. abort() was wrong to call anyway since this is a library!
2004-06-23prevent a warningDaniel Stenberg
2004-06-22one copy&paste too much, removed the define again.Gunter Knauf
2004-06-22argh - copy&paste error.Gunter Knauf
2004-06-22syncronized with recent getdate.y updates.Gunter Knauf
2004-06-22the hostname variable wasn't assigned and we no longer use itDaniel Stenberg
2004-06-22cookie sizeDaniel Stenberg
2004-06-22extended to include a cookie with 4998 bytes of contentDaniel Stenberg
2004-06-22David Cohen pointed out that RFC2109 says clients should allow cookies toDaniel Stenberg
contain least 4096 bytes while libcurl only allowed 2047. I raised the limit to 4999 now and made the used buffer get malloc()ed instead of simply allocated on stack as before.
2004-06-22Günter Knauf fixed getdate.y to remove a few warnings. I removed theDaniel Stenberg
ifdef'ed test we never ever use anyway.
2004-06-22added new --target option for autobuilding other targets than GNU-like.Gunter Knauf
2004-06-22added 'clean' targets for mingw32 and netware.Gunter Knauf
2004-06-22reset CURLOPT_HTTPHEADER with NULLDaniel Stenberg
2004-06-22Moved the "About to connect() to" text to the place where the host name isDaniel Stenberg
actually known, as before this text lied when used in i.e FTP.
2004-06-22Gisle Vanem improved the certificate wildcard checksDaniel Stenberg
2004-06-22Gisle fixed the wildcard checks for certificates.Daniel Stenberg
2004-06-22Gunter's fix to avoid the notorious YYSTACK_USE_ALLOCA warning we get onDaniel Stenberg
several platforms/compilers/yacc versions.
2004-06-22retry to read the sent request a few times if it doesn't exist the first timeDaniel Stenberg
2004-06-22pass an int pointer when it expects an int pointer...Daniel Stenberg
2004-06-22modified some logging outputDaniel Stenberg
2004-06-21testcurl.sh is dead, long live tests/testcurl.pl!Daniel Stenberg
2004-06-21This is the old script for testing curl, now use tests/testcurl.pl instead.Daniel Stenberg
It is more portable.
2004-06-21read callback return code and fixed the pycurl urlDaniel Stenberg
2004-06-21CURL_READFUNC_ABORT stuffDaniel Stenberg
2004-06-21Added blurb for the READFUNCTION, including the new CURL_READFUNC_ABORTDaniel Stenberg
return code.
2004-06-21added test case 513Daniel Stenberg
2004-06-21The read callback can now return CURL_READFUNC_ABORT to stop a transfer.Daniel Stenberg
2004-06-21added CURL_READFUNC_ABORTDaniel Stenberg
2004-06-21when the client disconnects prematurely, dump the request as received thusDaniel Stenberg
far
2004-06-21recent eventsDaniel Stenberg
2004-06-21typecasts to prevent compiler warningsDaniel Stenberg
2004-06-21updatesDaniel Stenberg
2004-06-21refer to the new tutorial man pageDaniel Stenberg
2004-06-21removed libcurl-the-guide from the distDaniel Stenberg
2004-06-21libcurl-tutorial.3 is the former libcurl-the-guide converted to man page formatDaniel Stenberg
2004-06-19test 177 HTTP POST with --digest that gets a 302 responseDaniel Stenberg
2004-06-19When doing auth negotiations or authprobing, we only consider HTTP codeDaniel Stenberg
<300 to be good.
2004-06-19prevent compiler warningDaniel Stenberg
2004-06-18ispell-bufferDaniel Stenberg
2004-06-18two issues to remember to fix before next releaseDaniel Stenberg
2004-06-18Gisle's "SSL patch" from June 16th 2004, modified by me as discussed on theDaniel Stenberg
mailing list.
2004-06-18With David Byron's test server I could repeat his problem and make sure thatDaniel Stenberg
POSTing over HTTPS:// with NTLM works fine now. There was a general problem with multi-pass authentication with non-GET operations with CONNECT.
2004-06-17large file FTP upload bugDaniel Stenberg
2004-06-17new daring features, not used by any current testDaniel Stenberg
2004-06-16Keep the upload byte counter in an curl_off_t, not an int. 32bits is notDaniel Stenberg
enough. This is most likely the bug Jean-Louis Lemaire reported that makes 2GB FTP uploads to report error when completed. Also padded comments to get them aligned again, only for visibility.
2004-06-16Alexander Krasnostavsky fixed a flaw in the 3rd party transfer code thatDaniel Stenberg
didn't properly check return code.
2004-06-15post with auth problems fixedDaniel Stenberg