Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-02-28 | spell out that POSTFIELDS should be url-encoded in most cases | Daniel Stenberg | |
2003-02-27 | spell better | Daniel Stenberg | |
2003-02-27 | Updated to better reflect reality. Also displays how the CURLMsg struct | Daniel Stenberg | |
looks like. | |||
2003-02-27 | It appears that there are FTP-servers that return size 0 for files | Daniel 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-26 | test138 is for RETR without size and without a working SIZE | Daniel Stenberg | |
2003-02-26 | support <size>-1</size> to completely disable the SIZE command | Daniel Stenberg | |
2003-02-26 | added support for RETRNOSIZE in the control file to tell RETR to not | Daniel Stenberg | |
include size in the 150-reply | |||
2003-02-26 | added a test case for RETR that doesn't get the size in the 150-reply | Daniel Stenberg | |
2003-02-26 | added index.html | Daniel Stenberg | |
2003-02-26 | random updates | Daniel Stenberg | |
2003-02-26 | No longer loop to read multiple times before returning back from the transfer | Daniel 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-25 | updated, now features less mentions about older versions | Daniel Stenberg | |
2003-02-25 | better sslcerts link | Daniel Stenberg | |
2003-02-24 | 7.10.4-pre2 commit | Daniel Stenberg | |
2003-02-24 | Fixes to bring back the the "Expect: 100-continue" functionality. If the | Daniel 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-24 | Kjetil Jacobsen found out that setting CURLOPT_MAXCONNECTS to a value higher | Daniel Stenberg | |
than 5 could cause a segfault. | |||
2003-02-24 | fixed language for limit-rate | Daniel Stenberg | |
2003-02-24 | daily was weekly, added a little thing about feb 2003 | Daniel Stenberg | |
2003-02-21 | added an EXAMPLE section | Daniel Stenberg | |
2003-02-17 | how to disable FTP PORT | Daniel Stenberg | |
2003-02-17 | This 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-17 | mention --trace and --trace-ascii in the -v/--versbose section to remind | Daniel Stenberg | |
people how to get even more details shown | |||
2003-02-14 | mention more cacert magic | Daniel Stenberg | |
2003-02-14 | Fix Curl_is_connected() even more to deal with waitconnect() return codes | Daniel Stenberg | |
even better (also based on input from Martin). | |||
2003-02-14 | Matthew Clarke built curl on AIX 3.2.5 | Daniel Stenberg | |
2003-02-14 | include <sys/socket.h> to compile the fd_set stuff properly on all systems | Daniel Stenberg | |
2003-02-14 | geterrno() renamed to ourerrno() to prevent the name clash that occurred in | Daniel Stenberg | |
AIX 3.2.5 and possibly other OSF-like system headers. | |||
2003-02-14 | Martin C. Martin's fix for multi-interface connects to non-listening ports. | Daniel Stenberg | |
2003-02-13 | Christopher R. Palmer fixed Curl_base64_encode() to deal with zeroes in the | Daniel Stenberg | |
data to encode. | |||
2003-02-08 | language | Daniel Stenberg | |
2003-02-06 | include stdarg.h since we use va_* stuff | Daniel Stenberg | |
2003-02-05 | I made curl run fine on a XScale/PXA250 | Daniel Stenberg | |
2003-02-05 | Re-arranged the SSL connection code (again). The recent fix was not a very | Daniel Stenberg | |
good one. This should work fine again. | |||
2003-02-04 | added the sharing of DNS cache | Jean-Philippe Barette-LaPierre | |
2003-02-04 | VMS has setjmp.h | Daniel Stenberg | |
2003-02-04 | Nico Baggus updated build script for VMS | Daniel Stenberg | |
2003-02-04 | assume zlib 1.1.4 - pointed out by Kevin Roth | Daniel Stenberg | |
2003-02-04 | HAVE_LIBZ is the actual name of the define we use | Daniel Stenberg | |
2003-02-04 | make it more obvious what this is by not even trying to show a manual | Daniel Stenberg | |
2003-02-04 | James Bursa corrected a bad comment | Daniel Stenberg | |
2003-02-04 | fixes during the last couple of days | Daniel Stenberg | |
2003-02-04 | Improved error reporting in case of bad SSL_connect()s, and we also no | Daniel 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-03 | scan through the PATH as well, to find stunnel | Daniel Stenberg | |
2003-02-03 | Julian Noble pointed out that capath is indeed working fine on Windows | Daniel 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-31 | Kevin Roth corrected the zlib stuff to work better. | Daniel Stenberg | |
2003-01-30 | don't check for the CA cert bundle if --insecure is used | Daniel Stenberg | |
2003-01-30 | typecast the argument to isspace() to an int to prevent warnings on some | Daniel Stenberg | |
compilers | |||
2003-01-30 | curl now uses stricter VERIFYHOST by default and only uses a lesser check | Daniel Stenberg | |
if --insecure is used. Reported by Hamish Mackenzie. | |||
2003-01-30 | Fixes bug #669059. We now extract the Content-Type better and more accurate. | Daniel Stenberg | |
2003-01-30 | test case 57 - verifies that the Content-Type extraction does not stop on | Daniel Stenberg | |
the first space anymore but cuts off the trailing spaces only. Bug report #669059. |