Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-03-11 | Christophe Demory fixed the check to work better for non-blocking on HP-UX | Daniel Stenberg | |
systems. Bug report #701749. | |||
2003-03-11 | Use ssize_t instead of 'int' to make the 64 bit sparc compiler happier. | Daniel Stenberg | |
Fix by Richard Gorton. | |||
2003-03-11 | Richard Gorton improved the random_the_seed() function for systems where | Daniel Stenberg | |
we don't find/know of a good random source. This way, we get a better randomness which in turn should make SSL connections more secure. | |||
2003-03-11 | Martin C. Martin's fix to produce an error message in case of failure | Daniel Stenberg | |
in the Curl_is_connected() function. | |||
2003-03-03 | Added share.obj | Daniel Stenberg | |
2003-03-03 | AIX 4.3 or later should use gethostbyname() and not the *_r() version. | Daniel Stenberg | |
2003-03-03 | Added typecast to please the MSVC compiler. | Daniel Stenberg | |
2003-03-03 | another typecast added to please the borland compiler | Daniel Stenberg | |
2003-03-03 | Add (void) on our uses of the swrite() macro when we don't read the return | Daniel Stenberg | |
code as this makes compiler warnings. We *should* fix the code to deal with the return codes instead... | |||
2003-03-02 | Init postdata properly before issuing a request, so that there isn't any | Daniel Stenberg | |
lingering POST-stuff that confuses GET requests. Juan F. Codagnone reported this problem in bug report #653859. | |||
2003-03-02 | moved a variable declaration to remove a compiler warnings with the MSVC | Daniel Stenberg | |
compiler, mentioned by Andi Jahja | |||
2003-02-28 | include the engine stuff | Daniel Stenberg | |
2003-02-28 | Andres Garcia Garcia updated to build with the most recent OpenSSL and | Daniel Stenberg | |
the recent libcurl changes. | |||
2003-02-28 | James Bursa made it compile on RISC OS as well. | Daniel Stenberg | |
2003-02-28 | the strequal and strnequal should now be called with the proper curl_ prefix | Daniel Stenberg | |
2003-02-27 | spell better | Daniel Stenberg | |
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 | 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-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-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 | 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-06 | include stdarg.h since we use va_* stuff | 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 | HAVE_LIBZ is the actual name of the define we use | 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-01-31 | Kevin Roth corrected the zlib stuff to work better. | Daniel Stenberg | |
2003-01-30 | typecast the argument to isspace() to an int to prevent warnings on some | Daniel Stenberg | |
compilers | |||
2003-01-30 | Fixes bug #669059. We now extract the Content-Type better and more accurate. | Daniel Stenberg | |
2003-01-29 | John McGowan found a problem where the DEBUGFUNCTION was called with bad | Daniel Stenberg | |
data on uploads. | |||
2003-01-29 | reset conn->size to -1 on the ftp-do function to make it not go on to | Daniel Stenberg | |
ftp_done() with the previous transfer's value, as Dave Halbakken found out. He also verified this fixed corrected the problem. | |||
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-29 | removed weirdo {{{ and }}} comments | Daniel Stenberg | |
removed emacs local-variables stuff | |||
2003-01-27 | Removed the long-living compiler warnings on the des_pcbc_encrypt() function | Daniel Stenberg | |
calls! | |||
2003-01-24 | Bertrand Demiddelaer found and fixed this memory leak. | Daniel Stenberg | |
2003-01-23 | Duncan Wilcox reported a crash with --interface on FreeBSD when ipv6-enabled | Daniel Stenberg | |
and this has been verified to correct the problem. | |||
2003-01-21 | when a chunked error is noticed, store the error number in the error string | Daniel Stenberg | |
to enable better error-tracking | |||
2003-01-20 | Markus F.X.J. Oberhumer's patch that reduces memory usage quite a bit by | Daniel Stenberg | |
only allocating the scratch memory buffer once it is needed and not always in the handle. | |||
2003-01-20 | given passwords in netrc must be respected accordingly | Daniel Stenberg | |
2003-01-16 | reverted bad header replacement | Daniel Stenberg | |
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-16 | Allow CURLINFO_PRIVATE to be NULL, patch by Markus Oberhumer | Daniel Stenberg | |
2003-01-15 | no TABs in source code | Daniel Stenberg | |
2003-01-15 | removed a TAB | Daniel Stenberg | |
2003-01-10 | Steve Oliphant pointed out that test case 105 did not work anymore and this | Daniel Stenberg | |
was due to a missing fix for the password prompting |