Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
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-27 | CURLOPT_HTTPDIGEST is added | Daniel Stenberg | |
2003-05-26 | language | Daniel Stenberg | |
2003-05-26 | ftp ASCII transfers in general need fixing | Daniel Stenberg | |
2003-05-26 | Chris Lewis mentioned that he doesn't get WIN32 defined, only _WIN32 so we | Daniel Stenberg | |
make an adjustment to catch this. | |||
2003-05-23 | even more | Daniel Stenberg | |
2003-05-23 | Ricardo Cadime found a socket leak when listing directories without | Daniel Stenberg | |
contents. Test cases 144 and 145 were added to verify the fix. Now we deal with return code 450 properly and other codes also do proper cleanup. | |||
2003-05-23 | more ftp testing using NLST and no contents and bad return code | Daniel Stenberg | |
2003-05-23 | Rudy Koento's problem fixed, test case 66 verifies this. | Daniel Stenberg | |
2003-05-23 | test 66 returns one line of data with no header (HTTP) | Daniel Stenberg | |
2003-05-23 | --digest added, --compressed rephrased | Daniel Stenberg | |
2003-05-23 | include digest.h for proto | Daniel Stenberg | |
2003-05-23 | DJGPP fix by Gisle Vanem | Daniel Stenberg | |
2003-05-22 | more more more | Daniel Stenberg | |
2003-05-22 | warning-free is better | Daniel Stenberg | |
2003-05-22 | Introducing --digest | Daniel Stenberg | |
2003-05-22 | Better Digest stuff | Daniel Stenberg | |
2003-05-22 | Added CURLOPT_HTTPDIGEST support | Daniel Stenberg | |
SOCKS5 fix as suggested by Jis in bugreport #741841. |