- Sep 04, 2005
-
-
Daniel Stenberg authored
-
- Sep 02, 2005
-
-
Daniel Stenberg authored
added. TODO: add them to docs. add TFTP server to test suite. add TFTP to list of protocols whereever those are mentioned.
-
- Aug 29, 2005
-
-
Daniel Stenberg authored
-
- Aug 24, 2005
-
-
Daniel Stenberg authored
from the command line tool with --ignore-content-length. This will make it easier to download files from Apache 1.x (and similar) servers that are still having problems serving files larger than 2 or 4 GB. When this option is enabled, curl will simply have to wait for the server to close the connection to signal end of transfer. I wrote test case 269 that runs a simple test that this works.
-
- Jul 12, 2005
-
-
Daniel Stenberg authored
trailer is then sent to the normal header callback/stream.
-
- Apr 25, 2005
-
-
Daniel Stenberg authored
.netrc, and when following a Location: the subsequent requests didn't properly use the auth as found in the netrc file. Added test case 257 to verify my fix.
-
- Apr 08, 2005
-
-
Daniel Stenberg authored
-
- Apr 07, 2005
-
-
Daniel Stenberg authored
internally, with code provided by sslgen.c. All SSL-layer-specific code is then written in ssluse.c (for OpenSSL) and gtls.c (for GnuTLS). As far as possible, internals should not need to know what SSL layer that is in use. Building with GnuTLS currently makes two test cases fail. TODO.gnutls contains a few known outstanding issues for the GnuTLS support. GnuTLS support is enabled with configure --with-gnutls
-
- Mar 29, 2005
-
-
Daniel Stenberg authored
up in several chunks when read.
-
- Mar 14, 2005
-
-
Daniel Stenberg authored
-
- Mar 12, 2005
-
-
Gisle Vanem authored
-
- Mar 10, 2005
-
-
Daniel Stenberg authored
USE_WINDOWS_SSPI on Windows, and then libcurl will be built to use the native way to do NTLM. SSPI also allows libcurl to pass on the current user and its password in the request.
-
- Feb 09, 2005
-
-
Daniel Stenberg authored
The tag 'before_ftp_statemachine' was set just before this commit in case of future need.
-
- Jan 29, 2005
-
-
Daniel Stenberg authored
-
- Jan 28, 2005
-
-
Daniel Stenberg authored
curl_easy_perform() invokes. It was previously unlocked at disconnect, which could mean that it remained locked between multiple transfers. The DNS cache may not live as long as the connection cache does, as they are separate. To deal with the lack of DNS (host address) data availability in re-used connections, libcurl now keeps a copy of the IP adress as a string, to be able to show it even on subsequent requests on the same connection.
-
- Jan 25, 2005
-
-
Daniel Stenberg authored
present in RFC959... so now (lib)curl supports it as well. --ftp-account and CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account string after PASS have been sent away. The client responds with "ACCT [account string]".) Added test case 228 and 229 to verify the functionality. Updated the test FTP server to support ACCT somewhat.
-
Daniel Stenberg authored
-
- Jan 21, 2005
-
-
Daniel Stenberg authored
-
- Jan 11, 2005
-
-
Daniel Stenberg authored
select() overhaul fix.
-
- Jan 10, 2005
-
-
Daniel Stenberg authored
#1098843. In short, a shared DNS cache was setup for a multi handle and when the shared cache was deleted before the individual easy handles, the latter cleanups caused read/writes to already freed memory.
-
- Dec 19, 2004
-
-
Daniel Stenberg authored
a precedence problem with the zlib header. See CHANGES for details.
-
- Dec 16, 2004
-
-
Dan Fandrich authored
-
- Dec 15, 2004
-
-
Dan Fandrich authored
-
- Dec 14, 2004
-
-
Gisle Vanem authored
ssluse.*: Added SSL_strerror(). Curl_SSL_engines_list() now returns a slist which must be freed by caller.
-
Daniel Stenberg authored
UrlState sub-struct. Also made the engine_list exist for non-ssl builds to make curl build.
-
- Dec 13, 2004
-
-
Gisle Vanem authored
Added Curl_SSL_engines_list(), cleanup SSL in url.c (no HAVE_OPENSSL_x etc.).
-
- Dec 06, 2004
-
-
Gisle Vanem authored
-
- Nov 26, 2004
-
-
Gisle Vanem authored
-
Gisle Vanem authored
clash with djgpp ioctl() macro in setup.h.
-
- Nov 25, 2004
-
-
Daniel Stenberg authored
If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on the same server again even if a following request is made using a persistent connection. If a second request is made to a server, requesting a file from the same directory as the previous request operated on, libcurl will no longer make that long series of CWD commands just to end up on the same spot. Note that this is only for *exactly* the same dir. There is still room for improvements to optimize the CWD-sending when the dirs are only slightly different. Added test 210, 211 and 212 to verify these changes. Had to improve the test script too and added a new primitive to the test file format.
-
- Nov 24, 2004
-
-
Daniel Stenberg authored
-
- Oct 19, 2004
-
-
Daniel Stenberg authored
-
- Oct 06, 2004
-
-
Daniel Stenberg authored
-
- Sep 30, 2004
-
-
Daniel Stenberg authored
app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more failures in a more generic way, but let's start like this.
-
- Sep 16, 2004
-
-
Daniel Stenberg authored
-
- Sep 10, 2004
-
-
Daniel Stenberg authored
replacement, curl only replaced the Host: header on the initial request and didn't replace it on the following ones. This resulted in requests with two Host: headers. Now, curl checks if the location is on the same host as the initial request and then continues to replace the Host: header. And when it moves to another host, it doesn't replace the Host: header but it also doesn't make the second Host: header get used in the request. This change is verified by the two new test cases 184 and 185.
-
- Jul 04, 2004
-
-
Daniel Stenberg authored
implicitly converting it to int
-
- Jul 01, 2004
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Jun 24, 2004
-
-
Daniel Stenberg authored
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code.
-