Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-06-06 | Just moved around some logic in Curl_write() to make it easier to debug. | Daniel Stenberg | |
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 | 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 | 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-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 | Rudy Koento's problem fixed, test case 66 verifies this. | 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 | warning-free is better | 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. | |||
2003-05-22 | proper header added | Daniel Stenberg | |
2003-05-22 | hush the compiler | Daniel Stenberg | |
2003-05-22 | Initial Digest support. At least partly working. | Daniel Stenberg | |
2003-05-21 | David Balazic pointed out the lack of checks for a valid %XX code when | Daniel Stenberg | |
we unescape a string. We now check and decode only valid %XX strings. | |||
2003-05-21 | Gisle Vanem made curl build with djgpp on DOS. | Daniel Stenberg | |
2003-05-20 | Gisle Vanem's code for not trusting h_aliases to always be non-NULL | Daniel Stenberg | |
2003-05-15 | Skip any preceeding dots from the domain name of cookies when we keep them | Daniel Stenberg | |
in memory, only add it when we save the cookie. This makes all tailmatching and domain string matching internally a lot easier. This was also the reason for a remaining bug I introduced in my overhaul. | |||
2003-05-14 | George Comninos provided a fix that calls the progress meter when waiting | Daniel Stenberg | |
for FTP command responses take >1 second. | |||
2003-05-13 | Setup and use CURL_INADDR_NONE all over instead of INADDR_NONE. We setup | Daniel Stenberg | |
the define accordingly in the hostip.h header to work nicely all over. | |||
2003-05-13 | before using if2ip(), check if the address is an ip address and skip it if | Daniel Stenberg | |
it is. | |||
2003-05-12 | before checking for network interfaces using if2ip(), check that the given | Daniel Stenberg | |
name isn't an ip address | |||
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 | when we have accepted the server's connection in a PORT sequence, we set | Daniel Stenberg | |
the new socket to non-blocking | |||
2003-05-12 | avoid the write loop | Daniel Stenberg | |
2003-05-12 | incoming proxy headers shall be sent to the debug function has HEADERs not | Daniel Stenberg | |
DATA | |||
2003-05-09 | support for CURLOPT_FTP_USE_EPRT added | Daniel Stenberg | |
2003-05-06 | Kevin Delafield reported another case where we didn't correctly check for | Daniel Stenberg | |
EAGAIN but only EWOULDBLOCK, which caused badness on HPUX. We also check for and act the same on EINTR errors as well now. | |||
2003-05-02 | If there is a custom Host: header specified, we use that host name to | Daniel Stenberg | |
extract the correct set of cookies to send. This functionality is verified by test case 62. | |||
2003-05-01 | corrected a comment about gzip not being supported | Daniel Stenberg | |
2003-05-01 | Andy Cedilnik fixed some compiler warnings | Daniel Stenberg | |
2003-05-01 | ourerrno became Curl_ourerrno() and is now available to all libcurl | Daniel Stenberg | |
2003-05-01 | Use the proper Curl_ourerrno() function instead of plain errno, for better | Daniel Stenberg | |
portability. Also use Andy Cedilnik's compiler warning fixes. | |||
2003-04-30 | when making up the list of path parts, save the last entry pointing to NULL | Daniel Stenberg | |
as otherwise we'll go nuts | |||
2003-04-30 | if there's a cookiehost allocated, free that too | Daniel Stenberg | |
2003-04-30 | stop parsing Host: host names at colons too | Daniel Stenberg | |
2003-04-30 | modified to the new cookie function proto | Daniel Stenberg | |
2003-04-30 | extract host name from custom Host: headers to use for cookies | Daniel Stenberg | |
2003-04-30 | Many cookie fixes: | Daniel Stenberg | |
o Save domains in jars like Mozilla does. It means all domains set in Set-Cookie: headers are dot-prefixed. o Save and use the 'tailmatch' field in the Mozilla/Netscape cookie jars (the second column). o Reject cookies using illegal domains in the Set-Cookie: line. Concerns both domains with too few dots or domains that are outside the currently operating server host's domain. o Set the path part by default to the one used in the request, if none was set in the Set-Cookie line. | |||
2003-04-30 | changes need for the new ftp path treatment and the new cookie code | Daniel Stenberg | |
2003-04-30 | David Balazic's patch to make the FTP operations "do right" according to | Daniel Stenberg | |
RFC1738, which means it'll use one CWD for each pathpart. | |||
2003-04-29 | Peter Kovacs provided a patch that makes the CURLINFO_CONNECT_TIME work fine | Daniel Stenberg | |
when using the multi interface (too). | |||
2003-04-25 | RSAglue.lib is no longer needed with recent OpenSSL versions | Daniel Stenberg | |
2003-04-22 | Dan Fandrich corrected the error messages on "bad encoding". | Daniel Stenberg | |
2003-04-22 | Dan Fandrich's gzip bugfix | Daniel Stenberg | |