Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-12 | attempt to make older OpenSSL versions work with the DES stuff | Daniel Stenberg | |
2003-06-12 | Based on Dan Fandrich's patch and gzip unpack function, we now compress | Daniel Stenberg | |
the 'hugehelp' text if libz and gzip are available at build time. | |||
2003-06-12 | store HAVE_LIBZ as an automake conditional | Daniel Stenberg | |
2003-06-11 | fixing details for NTLM | Daniel Stenberg | |
2003-06-11 | more how I envision it _should_ work, but it still doesn't... | Daniel Stenberg | |
2003-06-11 | to support "redirects" after the full body is transfered | Daniel Stenberg | |
2003-06-11 | made a nicer output for the decode test, as it served as a nice tool for me ;-) | 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 | correct mistakes | Daniel Stenberg | |
2003-06-11 | describe the NTLM mechanism too | Daniel Stenberg | |
2003-06-11 | basic NTLM support | Daniel Stenberg | |
2003-06-11 | ntlm added | Daniel Stenberg | |
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 | clarify the CUSTOMREQUEST and HTTPHEADER options slightly | Daniel Stenberg | |
2003-06-10 | CURLOPT_HTTPAUTH docu | Daniel Stenberg | |
2003-06-10 | Set auth type differently, we use one CURLOPT_HTTPAUTH instead as we plan | Daniel Stenberg | |
to add more method in the future. | |||
2003-06-10 | Daniel Kouril for the HTTP negotiate stuff | Daniel Stenberg | |
2003-06-10 | Daniel Kouril's patch that adds HTTP negotiation support to libcurl was | Daniel Stenberg | |
added. | |||
2003-06-10 | we fix more | Daniel Stenberg | |
2003-06-10 | more generic | Daniel Stenberg | |
2003-06-10 | Pass the error stream pointer to the URL globber, so that it can report | Daniel Stenberg | |
errors correctly to the user, if need be. Also fixed so that a missing ] in the globbing process no longer leads to core dump. | |||
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-06-06 | Just moved around some logic in Curl_write() to make it easier to debug. | Daniel Stenberg | |
2003-06-06 | spellfix | Daniel Stenberg | |
2003-06-05 | Reversed the logic to only include the <sys/select.h> header on systems | Daniel Stenberg | |
known to really NEED it as another system that doesn't have it came up: very old Linux libc5-based systems (as addition to all HPUX versions). The only known system at this point is AIX. | |||
2003-06-03 | LDAP problem added as mention in bug report #735752 | Daniel Stenberg | |
2003-06-03 | include the time headers just like we used to do in the curl/curl.h header | Daniel Stenberg | |
once upon the time | |||
2003-06-03 | we want the time defines too | Daniel Stenberg | |
2003-06-03 | Content-Length: now overrides other means of knowing when the stream has | Daniel Stenberg | |
ended. | |||
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 | the 500-599 test case range | Daniel Stenberg | |
2003-06-02 | ignore more | Daniel Stenberg | |
2003-06-02 | ignore | Daniel Stenberg | |
2003-06-02 | David Byron's fix to get the progress-bar use the local size too when | Daniel Stenberg | |
doing a resumed download. | |||
2003-06-02 | makefile fiddle | Daniel Stenberg | |
changed how http requests are sent - now in one chunk more often HPUX include fix in the external headers better SSL work-arounds for bad SSL servers modified error message when CURLE_HTTP_RETURNED_ERROR is returned | |||
2003-06-02 | work-around SSL implementation flaws better, pointed out in bug report | Daniel Stenberg | |
#745122. | |||
2003-06-02 | make a more descriptive error message when CURLE_HTTP_RETURNED_ERROR is | Daniel Stenberg | |
returned | |||
2003-05-28 | haven't updates this in a loooong time | Daniel Stenberg | |
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 | include sys/time.h, we didn't have a time() proto anymore. Did one of the | Daniel Stenberg | |
changes in curl/curl.h make this occur? | |||
2003-05-27 | Documented which rules the public headers must follow when we write | Daniel Stenberg | |
preprocessor checks for condititions. | |||
2003-05-27 | oops, removed a # too many | Daniel Stenberg | |
2003-05-27 | remove usage of HAVE_* defines, we cannot and shall not depend on any such | Daniel Stenberg | |
defines in the public external header files | |||
2003-05-27 | sys/select.h is not present on HPUX, avoid including it | Daniel Stenberg | |
2003-05-27 | made it work ;-) | Daniel Stenberg | |
2003-05-27 | if cvs update fails, attempt again after 5 seconds and retry 50 times | Daniel Stenberg | |
before giving up | |||
2003-05-27 | Only build in lib and src by default, make the others dist-subdirs. | Daniel Stenberg | |
Make the test stuff get built when we run 'make test' instead. | |||
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 | runs on DOS now | Daniel Stenberg | |
2003-05-27 | include file flaw and yet another socks5-fix | Daniel Stenberg | |