Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-05 | David J Meyer's large file support. | Daniel Stenberg | |
2003-11-25 | When basic is the only auth wanted (which it is by default), the auth phase | Daniel Stenberg | |
is always considered done immediately as Basic needs to extra passes. This fix corrects bug report #848371. | |||
2003-11-24 | allow the end-of-headers from a proxy response to CONNECT end with a CRCR | Daniel Stenberg | |
as well as a CRLF | |||
2003-11-24 | FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe it | Daniel Stenberg | |
2003-11-20 | bail out properly on a 407 when we can't authenticate basic, bug report | Daniel Stenberg | |
#845247 | |||
2003-10-31 | gmtime() really can't even return NULL, can it? | Daniel Stenberg | |
2003-10-24 | Improved checks for bad memory situations and proper behaviour when we | Daniel Stenberg | |
run out of memory. | |||
2003-10-21 | conn->user and conn->passwd will now always be set to point to something. | Daniel Stenberg | |
If not user or password is set, they will point to a "" string. | |||
2003-10-20 | allow no user and password for proxy too, Basic | Daniel Stenberg | |
2003-10-20 | allow no user and no passwd when doing basic auth | Daniel Stenberg | |
2003-10-18 | builds warning-free with -Wshadow now | Daniel Stenberg | |
2003-10-18 | compiler warning fix | Daniel Stenberg | |
2003-10-17 | make empty names look fine in verbose output | Daniel Stenberg | |
2003-10-17 | show info text (verbose) about auth type and user name in use | Daniel Stenberg | |
2003-10-14 | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | |
2003-10-07 | make sure that a regular POST using the read callback works | Daniel Stenberg | |
2003-10-04 | Vincent Bronner pointed out that if you set CURLOPT_COOKIE to NULL, it still | Daniel Stenberg | |
sends off the previously set cookie. This also concerns CURLOPT_REFERER. This fix should stop this. | |||
2003-09-19 | Markus Moeller's SPNEGO patch applied, with my edits, additions and minor | Daniel Stenberg | |
cleanups. | |||
2003-09-15 | When we issue a HTTP request, first make sure if the authentication phase | Daniel Stenberg | |
is over or not, as if it isn't we shall not begin any PUT or POST operation. This cures bug report #805853, and test case 88 verifies it! | |||
2003-09-11 | Tim Bartley's patch that makes the GSSNEGOTIATE option work for Microsoft's | Daniel Stenberg | |
"Negotiate" authentication as well. | |||
2003-09-04 | ah, this change broke multiple test cases | Daniel Stenberg | |
2003-09-04 | Jörg pointed out that I did this fix wrongly, now authwant is cleared | Daniel Stenberg | |
properly if no auth is available | |||
2003-09-04 | Based on Joerg Mueller-Tolk's patch, this introduces support for | Daniel Stenberg | |
CURLINFO_HTTPAUTH_AVAIL and CURLINFO_PROXYAUTH_AVAIL | |||
2003-09-04 | 1. store the httpproxycode in the loop after it is parsed | Daniel Stenberg | |
2. made Curl_http_auth_act() reset 'authavail' unconditionally | |||
2003-09-04 | avoid proxy (and other) auth if no user+password is given | Daniel Stenberg | |
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-12 | Bugfix from Serge Semashko that fixes a bug introduced when we applied his | Daniel Stenberg | |
NTLM patch. Test case 84 and 85 verify this. | |||
2003-08-11 | Added support for CURLINFO_HTTP_CONNECTCODE | Daniel Stenberg | |
2003-08-11 | Serge Semashko added CURLOPT_PROXYAUTH support, and now NTLM for proxies | Daniel Stenberg | |
work. | |||
2003-08-11 | support sending off cookies without contents | Daniel Stenberg | |
2003-08-06 | include "share.h" for the cookie sharing | Daniel Stenberg | |
2003-08-04 | Dirk Manske's patch that introduces cookie support to the share interface. | Daniel Stenberg | |
2003-08-02 | When proxy authentication is used in a CONNECT request (as used for all SSL | Daniel Stenberg | |
connects and otherwise enforced tunnel-thru-proxy requests), the same authentication header is also wrongly sent to the remote host. The name and password can then be captured by an evil host and possibly get used for malicious purposes. | |||
2003-07-28 | clear http->send_buffer when we have freed the memory it pointed to | 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-21 | moved the proxyuser and proxypasswd fields from the sessionhandle to the | Daniel Stenberg | |
connectdata to work as expected | |||
2003-07-19 | Access the user and passwd fields from the connectdata struct now instead | Daniel Stenberg | |
of the sessionhandle struct, as that was not good. | |||
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 | major adjustments to the new authentication support | 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 | 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-06 | When doing very big GET requests over HTTPS, we need to add some extra | Daniel Stenberg | |
funky logic in order to make re-tries work fine with OpenSSL. This corrects the problem David Orrell noticed. | |||
2003-05-28 | Posting static data using POST and chunked encoded now also appends the | Daniel Stenberg | |
data to the initial request buffer, if the total post data is less than 100K. | |||
2003-05-27 | Rudy Koento experienced problems with curl's recent habit of POSTing data in | Daniel Stenberg | |
two separate send() calls, first the headers and then the data. I've now made a fix that for static and known content that isn't to be chunked-encoded, everything is now sent in one single system call again. This is also better for network performance reasons. | |||
2003-05-27 | Another socks5-fix. Make sure that when we use a socks-proxy, it is not the | Daniel Stenberg | |
same as using a httpproxy so we must make sure to better check for http proxies before we do HTTP proxy stuff. This included authorization and URI usage in the request etc. | |||
2003-05-22 | warning-free is better | 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 | incoming proxy headers shall be sent to the debug function has HEADERs not | Daniel Stenberg | |
DATA |