Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-04-08 | share.c added | Daniel Stenberg | |
2003-04-04 | Changed how boundary strings are generated. This new way uses 28 dashes | Daniel Stenberg | |
and 12 following hexadecimal letters, which seems to be what IE uses. This makes curl work smoother with more stupidly written server apps. Worked this out together with Martijn Broenland. | |||
2003-04-03 | spell fix | Daniel Stenberg | |
2003-04-03 | kill a compiler warning on cygwin | Daniel Stenberg | |
2003-03-31 | move the ssl config clone call to before the connectionexists call and then | Daniel Stenberg | |
also subsequently free the ssl struct if the connection struct is to be deleted | |||
2003-03-31 | testing, ignore this commit | Sterling Hughes | |
2003-03-31 | Fixup after talks with Richard Bramante. We should now make better | Daniel Stenberg | |
comparisons before re-using SSL connections and re-using SSL connection IDs. | |||
2003-03-31 | Guillaume Cottenceau's patch that adds CURLOPT_UNRESTRICTED_AUTH that | Daniel Stenberg | |
disables the host name check in the FOLLOWLOCATION code. With that option set, libcurl will send user+password to all hosts. | |||
2003-03-31 | Frankie Fong filed bug report #708708 which identified a problem with | Daniel Stenberg | |
ConnectionExists() when first doing a proxy connecto to a HTTPS site and then switching over to a HTTP connection to the same host. This fix corrects the problem. | |||
2003-03-25 | white space and indent fix | Daniel Stenberg | |
2003-03-24 | ignore getdate.c | Daniel Stenberg | |
2003-03-24 | Richard Bramante's provided a fix for a handle re-use problem seen when you | Daniel Stenberg | |
change options on an SSL-enabled connection between requests. | |||
2003-03-24 | Removed the "TC TrustCenter, Germany, Class 0 CA." certificate: | Daniel Stenberg | |
"It is a DEMO certificate and was never intended to be in any list of trusted CA certificates." (quote by Götz Babin-Ebell, trustcenter.de) | |||
2003-03-21 | Hopefully this change addresses these two bug reports: 707003 and 706624. | Daniel Stenberg | |
We need to make sure that when we init a 'connectdata' struct and then afterwards check for and re-use another one, we must be careful so that the newly set values are transmitted and used in the surviving connectdata struct. | |||
2003-03-19 | make the ENGINE depend on the USE_SSLEAY define too | Daniel Stenberg | |
2003-03-19 | typecast the conversion from const char * to char * | Daniel Stenberg | |
2003-03-19 | Rename getdate.c to getdate.c.cvs, since the "normal" build procedure do | Daniel Stenberg | |
imply that yacc/bison exists and can generate this file. Those without one of those tools can then checkout and rename the getdate.c.cvs file. | |||
2003-03-16 | regenerated from getdate.y | Daniel Stenberg | |
2003-03-16 | Juan F. Codagnone pointed out a missing thing from the march 2 fix | Daniel Stenberg | |
2003-03-15 | Gisle Vanem's fix to get this working nicely on windows | Daniel Stenberg | |
2003-03-15 | Gisle Vanem fixed a name collision with structure '"CONTEXT" in <winnt.h> | Daniel Stenberg | |
2003-03-15 | Sort out the ENGINE problems people seem to be having. Now we put all ENGINE | Daniel Stenberg | |
related stuff within HAVE_OPENSSL_ENGINE_H and we don't make any private typedef or similar if the header is missing... | |||
2003-03-14 | Nico Baggus little adjustment to build with OpenSSL 0.9.7 (the ENGINE thing) | Daniel Stenberg | |
2003-03-13 | Philippe Raoult needed this to build on FreeBSD | Daniel Stenberg | |
2003-03-12 | Made set_local_option() properly static as reported by Rick Jones | Daniel Stenberg | |
2003-03-12 | Prefix defines and symbols with CURL_ to reduce the risk of colliding with | Daniel Stenberg | |
various system's other defines. | |||
2003-03-11 | syntax error | Daniel Stenberg | |
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. |