Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-09-03 | Re-arranged code to make the proxy-CONNECT loop able to do some of the | Daniel Stenberg | |
authentication negotiations needed for NTLM, Digest etc. | |||
2003-08-29 | typecast to prevent compiler warning | Daniel Stenberg | |
2003-08-20 | transfer fix for multi interface | Daniel Stenberg | |
2003-08-14 | Curl_SSL_InitSessions can return error, so check the return code and bail | Daniel Stenberg | |
out if necessary | |||
2003-08-11 | Serge Semashko added CURLOPT_PROXYAUTH support, and now NTLM for proxies | Daniel Stenberg | |
work. | |||
2003-08-11 | the new cookie functions that require 'data' passed in | Daniel Stenberg | |
2003-08-06 | include "share.h" for the cookie sharing | Daniel Stenberg | |
2003-08-05 | ares awareness/usage/support added. If configure --enable-ares is used, we | Daniel Stenberg | |
build libcurl to use ares for asynch name resolves. | |||
2003-08-04 | Dirk Manske's patch that introduces cookie support to the share interface. | Daniel Stenberg | |
2003-07-25 | Removed #include <sys/resource.h>, as pointed out by Henry Bland we don't | Daniel Stenberg | |
need it. | |||
2003-07-22 | The NTLM functions now take a 'proxy' argument as well. | Daniel Stenberg | |
2003-07-15 | Fix to the endless loop of bad Basic authentication as reported in Cris | Daniel Stenberg | |
Bailiff's bug report 768275. | |||
2003-07-04 | Peter Sylvester's patch was applied that introduces the following: | Daniel Stenberg | |
CURLOPT_SSL_CTX_FUNCTION to set a callback that gets called with the OpenSSL's ssl_ctx pointer passed in and allow a callback to act on it. If anything but CURLE_OK is returned, that will also be returned by libcurl all the way back. If this function changes the CURLOPT_URL, libcurl will detect this and instead go use the new URL. CURLOPT_SSL_CTX_DATA is a pointer you set to get passed to the callback set with CURLOPT_SSL_CTX_FUNCTION. | |||
2003-06-26 | Adjusted to work properly with the new authentication stuff | Daniel Stenberg | |
Added code to deal with white spaces in relocation headers. | |||
2003-06-12 | modified | Daniel Stenberg | |
2003-06-12 | corrected a comment | Daniel Stenberg | |
2003-06-12 | CURLHTTP* renamed to CURLAUTH* and NEGOTIATE is now GSSNEGOTIATE as there's | Daniel Stenberg | |
a "plain" Negotiate as well. | |||
2003-06-11 | fixing details for NTLM | Daniel Stenberg | |
2003-06-11 | when we get the auth headers, we still need to read out the full body response | Daniel Stenberg | |
as otherwise we can re-send requests on the same connection nicely | |||
2003-06-11 | Initial take at NTLM authentication. It doesn't really work at this point | Daniel Stenberg | |
but the infrastructure is there. | |||
2003-06-10 | Daniel Kouril's patch that adds HTTP negotiation support to libcurl was | Daniel Stenberg | |
added. | |||
2003-06-02 | Make the Content-Length info override the Connection: close header, so that | Daniel Stenberg | |
libcurl will stop reading when the number of bytes have arrived and not wait for a closed socket. | |||
2003-06-02 | make a more descriptive error message when CURLE_HTTP_RETURNED_ERROR is | Daniel Stenberg | |
returned | |||
2003-05-23 | Rudy Koento's problem fixed, test case 66 verifies this. | Daniel Stenberg | |
2003-05-22 | Better Digest stuff | Daniel Stenberg | |
2003-05-22 | Initial Digest support. At least partly working. | Daniel Stenberg | |
2003-05-12 | Dan Fandrich changed CURLOPT_ENCODING to select all supported encodings if | Daniel Stenberg | |
set to "". This frees the application from having to know which encodings the library supports. | |||
2003-05-12 | avoid the write loop | Daniel Stenberg | |
2003-05-01 | corrected a comment about gzip not being supported | Daniel Stenberg | |
2003-04-30 | modified to the new cookie function proto | Daniel Stenberg | |
2003-04-22 | Dan Fandrich corrected the error messages on "bad encoding". | Daniel Stenberg | |
2003-04-11 | Dan Fandrich's gzip patch applied | Daniel Stenberg | |
2003-04-08 | James Bursa fixed a flaw in the content-type extracting code that could | Daniel Stenberg | |
miss the first letter | |||
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-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 | 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-24 | Bertrand Demiddelaer found and fixed this memory leak. | Daniel Stenberg | |
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-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-15 | no TABs in source code | Daniel Stenberg | |
2003-01-07 | Simon Liu's HTTP200ALIASES-patch! | Daniel Stenberg | |
2002-12-18 | CURLE_HTTP_NOT_FOUND => CURLE_HTTP_RETURNED_ERROR | Daniel Stenberg | |
2002-12-10 | The initial HTTP request can now be sent in multiple parts, as part of the | Daniel Stenberg | |
regular transfer process. This required some new tweaks, like for example we need to be able to tell the tranfer loop to not chunky-encode uploads while we're transferring the rest of the request... | |||
2002-12-09 | The fread() callback pointer and associated pointer is now stored in the | Daniel Stenberg | |
connectdata struct instead, and is no longer modified within the 'set' struct as previously (which was a really BAAAD thing). | |||
2002-12-05 | read and write as much as possible until end of data or EWOULDBLOCK before | Daniel Stenberg | |
returning back to the select() loop. Consider this a test so far. | |||
2002-11-28 | compareheader() was moved over to http.c and got a Curl_ prefix | Daniel Stenberg | |
The chunked transfer upload never stopped due to a silly add before we checked for >0! |