aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-09new little example using the new conversion callbacks added in 7.15.4Daniel Stenberg
2006-04-08mention the outlength argumentDaniel Stenberg
2006-04-08readint_le() not needed in USE_WINDOWS_SSPI code.Gisle Vanem
2006-04-08curl_easy_unescape() takes 4 arguments.Gisle Vanem
2006-04-07First commit of David McCreedy's EBCDIC and TPF changes.Daniel Stenberg
2006-04-07minor re-arrange to return a value in order to avoid compiler warningsDaniel Stenberg
for not returning a value from a non-void function (even though the code never actually reached that point before)
2006-04-07added typedefed function pointers and typecast the NULL assignments in anDaniel Stenberg
attempt to silence picky compilers when assigning data pointers to a function pointer variable
2006-04-07attempt to avoid warnings in picky environments by storing options asDaniel Stenberg
unsigned chars
2006-04-05cut off a bit more of the type-2 ntlm message since it differs betweenDaniel Stenberg
hosts
2006-04-05Michele Bini modified the NTLM code to work for his "weird IIS case"Daniel Stenberg
(http://curl.haxx.se/mail/lib-2006-02/0154.html) by adding the NTLM hash function in addition to the LM one and making some other adjustments in the order the different parts of the data block are sent in the Type-2 reply. Inspiration for this work was taken from the Firefox NTLM implementation. I edited the existing 21(!) NTLM test cases to run fine with these news. Due to the fact that we now properly include the host name in the Type-2 message the test cases now only compare parts of that chunk.
2006-03-28for the CURLDEBUG case, we redefine sprintf and vsprintf to make us noticeDaniel Stenberg
if any use of such a function slip through
2006-03-28#1451929 (http://curl.haxx.se/bug/view.cgi?id=1451929) detailed a bug thatDaniel Stenberg
occurred when asking libcurl to follow HTTP redirects and the original URL had more than one question mark (?). Added test case 276 to verify.
2006-03-28converted sprintf() to snprintf() to reduce riskDaniel Stenberg
2006-03-27David Byron found a problem multiple -d options when libcurl was built withDaniel Stenberg
--enable-debug, as then curl used free() on memory allocated both with normal malloc() and with libcurl-provided functions, when the latter MUST be freed with curl_free() in debug builds.
2006-03-27minor Makefile fix - let's go 2006;Gunter Knauf
avoid kiling hugehelp.c when not built from CVS.
2006-03-26Tor Arntsen figured out that TFTP was broken on a lot of systems since weDaniel Stenberg
called bind() with a too big argument in the 3rd parameter and at least Tru64, AIX and IRIX seem to be very picky about it.
2006-03-21David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry pathDaniel Stenberg
2006-03-21Xavier Bouchoux made the SSL connection non-blocking for the multi interfaceDaniel Stenberg
(when using OpenSSL).
2006-03-21Tor Arntsen fixed the AIX Toolbox RPM specDaniel Stenberg
2006-03-20David McCreedy fixed libcurl to no longer ignore AUTH failures and now itDaniel Stenberg
reacts properly according to the CURLOPT_FTP_SSL setting.
2006-03-20mention today's fixesDaniel Stenberg
2006-03-207.15.3 contributorsDaniel Stenberg
2006-03-20Fixed a bug whereby a received file whose length was a multiple ofDan Fandrich
512 bytes could have random garbage appended. Also, stop processing TFTP packets which are too short to be legal.
2006-03-20off-by-one for the case when it adds /? and a terminating zero to the URLDaniel Stenberg
2006-03-20start working towards 7.15.4Daniel Stenberg
2006-03-20fixed the AIX packagesDaniel Stenberg
2006-03-20missing in CVSDaniel Stenberg
2006-03-20fixed tftp packet overflow riskDaniel Stenberg
2006-03-17slight rewording based on debian bug report #357388 by Justin PryzbyDaniel Stenberg
2006-03-16fixed in CVSDaniel Stenberg
2006-03-16AIX Toolbox RPM spec file by Tor ArntsenDaniel Stenberg
2006-03-15slightly edited explanation for -f/--fail by the help of Kjell EricsonDaniel Stenberg
2006-03-14use the new types accordinglyDaniel Stenberg
2006-03-14--ftp-method and CURLOPT_FTP_FILEMETHOD are now documented and usableDaniel Stenberg
2006-03-13David McCreedy found a use of the wrong variable when display the errorDaniel Stenberg
text from OpenSSL.
2006-03-13David McCreedy found a missing return code assignmentDaniel Stenberg
2006-03-13Scott Worley's typo fixesDaniel Stenberg
2006-03-08Peter Heuchert's correction for the clear control connection caseDaniel Stenberg
2006-03-07Markus Koetter filed debian bug report #355715 which identified a problemDaniel Stenberg
with the multi interface and multi-part formposts. The fix from February 22nd could make the Curl_done() function get called twice on the same connection and it was not designed for that and thus tried to call free() on an already freed memory area!
2006-03-07Peter Heuchert made sure the CURLFTPSSL_CONTROL setting for CURLOPT_FTP_SSLDaniel Stenberg
is used properly.
2006-03-06Lots of users on Windows have reported getting the "SSL: couldn't setDaniel Stenberg
callback" error message so I've now made the setting of that callback not be as critical as before. The function is only used for additional loggging/ trace anyway so a failure just means slightly less data. It should still be able to proceed and connect fine to the server.
2006-03-04build fix for InterixDaniel Stenberg
2006-03-03If run on a curl built shared, detect this and invoke libtool for gdbDaniel Stenberg
accordingly.
2006-03-03added test524Daniel Stenberg
2006-03-03Prevent uploading to a URL that has no file name part.Daniel Stenberg
2006-03-02point out that CAINFO points out a file name by defaultDaniel Stenberg
2006-03-02added large chunk of blurb about the progress meterDaniel Stenberg
2006-03-02I'm pretty sure #24 is fixed in 7.15.2Daniel Stenberg
2006-03-02mention Dan F's out-of-file handles fix from the other dayDaniel Stenberg
2006-03-02check for and use getprotobynameDaniel Stenberg