aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-02-28Removed the defines for strequal() and strnequal().Daniel Stenberg
2003-02-28recent stuffDaniel Stenberg
2003-02-28mention what happens if size is set to -1Daniel Stenberg
2003-02-28spell out that POSTFIELDS should be url-encoded in most casesDaniel Stenberg
2003-02-27spell betterDaniel Stenberg
2003-02-27Updated to better reflect reality. Also displays how the CURLMsg structDaniel Stenberg
looks like.
2003-02-27It appears that there are FTP-servers that return size 0 for filesDaniel Stenberg
when SIZE is used on the file while being in BINARY mode. To work around that (stupid) behavior, we attempt to parse the RETR response even if the SIZE returned size zero. Debugging help from Salvatore Sorrentino on February 26, 2003.
2003-02-26test138 is for RETR without size and without a working SIZEDaniel Stenberg
2003-02-26support <size>-1</size> to completely disable the SIZE commandDaniel Stenberg
2003-02-26added support for RETRNOSIZE in the control file to tell RETR to notDaniel Stenberg
include size in the 150-reply
2003-02-26added a test case for RETR that doesn't get the size in the 150-replyDaniel Stenberg
2003-02-26added index.htmlDaniel Stenberg
2003-02-26random updatesDaniel Stenberg
2003-02-26No longer loop to read multiple times before returning back from the transferDaniel Stenberg
function, as this could easily end up looping for a very long time (more or less until the whole transfer was done) and no library-using app would want that. Found thanks to a report by Kyle Sallee.
2003-02-25updated, now features less mentions about older versionsDaniel Stenberg
2003-02-25better sslcerts linkDaniel Stenberg
2003-02-247.10.4-pre2 commitDaniel Stenberg
2003-02-24Fixes to bring back the the "Expect: 100-continue" functionality. If theDaniel Stenberg
header is used, we must wait for a 100-code (or timeout), before we send the data. The timeout is merely 1000 ms at this point. We may have reason to set a longer timeout in the future.
2003-02-24Kjetil Jacobsen found out that setting CURLOPT_MAXCONNECTS to a value higherDaniel Stenberg
than 5 could cause a segfault.
2003-02-24fixed language for limit-rateDaniel Stenberg
2003-02-24daily was weekly, added a little thing about feb 2003Daniel Stenberg
2003-02-21added an EXAMPLE sectionDaniel Stenberg
2003-02-17how to disable FTP PORTDaniel Stenberg
2003-02-17This script clearly misses to remove the build dir at times when it exits,Daniel Stenberg
so we now remove everything matching "build-*" when the script starts.
2003-02-17mention --trace and --trace-ascii in the -v/--versbose section to remindDaniel Stenberg
people how to get even more details shown
2003-02-14mention more cacert magicDaniel Stenberg
2003-02-14Fix Curl_is_connected() even more to deal with waitconnect() return codesDaniel Stenberg
even better (also based on input from Martin).
2003-02-14Matthew Clarke built curl on AIX 3.2.5Daniel Stenberg
2003-02-14include <sys/socket.h> to compile the fd_set stuff properly on all systemsDaniel Stenberg
2003-02-14geterrno() renamed to ourerrno() to prevent the name clash that occurred inDaniel Stenberg
AIX 3.2.5 and possibly other OSF-like system headers.
2003-02-14Martin C. Martin's fix for multi-interface connects to non-listening ports.Daniel Stenberg
2003-02-13Christopher R. Palmer fixed Curl_base64_encode() to deal with zeroes in theDaniel Stenberg
data to encode.
2003-02-08languageDaniel Stenberg
2003-02-06include stdarg.h since we use va_* stuffDaniel Stenberg
2003-02-05I made curl run fine on a XScale/PXA250Daniel Stenberg
2003-02-05Re-arranged the SSL connection code (again). The recent fix was not a veryDaniel Stenberg
good one. This should work fine again.
2003-02-04added the sharing of DNS cacheJean-Philippe Barette-LaPierre
2003-02-04VMS has setjmp.hDaniel Stenberg
2003-02-04Nico Baggus updated build script for VMSDaniel Stenberg
2003-02-04assume zlib 1.1.4 - pointed out by Kevin RothDaniel Stenberg
2003-02-04HAVE_LIBZ is the actual name of the define we useDaniel Stenberg
2003-02-04make it more obvious what this is by not even trying to show a manualDaniel Stenberg
2003-02-04James Bursa corrected a bad commentDaniel Stenberg
2003-02-04fixes during the last couple of daysDaniel Stenberg
2003-02-04Improved error reporting in case of bad SSL_connect()s, and we also noDaniel Stenberg
longer use the SSL functions that store the error message in a static buffer since that is not very multi-thread friendly.
2003-02-03scan through the PATH as well, to find stunnelDaniel Stenberg
2003-02-03Julian Noble pointed out that capath is indeed working fine on WindowsDaniel Stenberg
these days since the c_rehash tool is written (fixed) to do the proper action even on file systems that don't support symlinks.
2003-01-31Kevin Roth corrected the zlib stuff to work better.Daniel Stenberg
2003-01-30don't check for the CA cert bundle if --insecure is usedDaniel Stenberg
2003-01-30typecast the argument to isspace() to an int to prevent warnings on someDaniel Stenberg
compilers