- Oct 17, 2009
-
-
Yang Tse authored
Fix invalid file name characters handling on Windows
-
- Oct 01, 2009
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2870221) that libcurl returned an incorrect return code from the internal trynextip() function which caused him grief. This is a regression that was introduced in 7.19.1 and I find it strange it hasn't hit us harder, but I won't persue into figuring out exactly why.
-
Daniel Stenberg authored
SO_SNDBUF to CURL_WRITE_SIZE even if the SO_SNDBUF starts out larger. The patch doesn't do a setsockopt if SO_SNDBUF is already greater than CURL_WRITE_SIZE. This should help folks who have set up their computer with large send buffers.
-
- Sep 27, 2009
-
-
Daniel Stenberg authored
the define CURL_MAX_HTTP_HEADER which is even exposed in the public header file to allow for users to fairly easy rebuild libcurl with a modified limit. The rationale for a fixed limit is that libcurl is realloc()ing a buffer to be able to put a full header into it, so that it can call the header callback with the entire header, but that also risk getting it into trouble if a server by mistake or willingly sends a header that is more or less without an end. The limit is set to 100K.
-
- Sep 26, 2009
-
-
Daniel Stenberg authored
saving received cookies with no given path, if the path in the request had a query part. That is means a question mark (?) and characters on the right side of that. I wrote test case 1105 and fixed this problem.
-
Kamil Dudka authored
transfer.c for blocking. It is currently used only by SCP and SFTP protocols. This enhancement resolves an issue with 100% CPU usage during SFTP upload, reported by Vourhey.
-
- Sep 25, 2009
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2861587) identifying that libcurl used the OpenSSL function X509_load_crl_file() wrongly and failed if it would load a CRL file with more than one certificate within. This is now fixed.
-
- Sep 24, 2009
-
-
Daniel Stenberg authored
-
- Sep 23, 2009
-
-
Daniel Stenberg authored
-
- Sep 16, 2009
-
-
Daniel Stenberg authored
powered libcurl in 7.19.6. If there was a X509v3 Subject Alternative Name field in the certficate it had to match and so even if non-DNS and non-IP entry was present it caused the verification to fail.
-
Dan Fandrich authored
statically linking since libssh2 needs the SSL library link flags to be set up already to satisfy its dependencies. This wouldn't be necessary if the libssh2 configure check was changed to use pkg-config since the --static flag would add the dependencies automatically.
-
- Sep 15, 2009
-
-
Yang Tse authored
-
- Sep 11, 2009
-
-
Guenter Knauf authored
This fixes a loop problem with high CPU usage.
-
- Sep 10, 2009
-
-
Daniel Stenberg authored
start second "Thu Jan 1 00:00:00 GMT 1970" as the date parser then returns 0 which internally then is treated as a session cookie. That particular date is now made to get the value of 1.
-
- Sep 06, 2009
-
-
Guenter Knauf authored
-
- Sep 02, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
errors.
-
- Sep 01, 2009
-
-
Daniel Stenberg authored
libcurl to resolve 'localhost' whatever name you use in the URL *if* you set the --interface option to (exactly) "LocalHost". This will enable us to write tests for custom hosts names but still use a local host server.
-
Daniel Stenberg authored
when cross-compiling. The key to success is then you properly setup PKG_CONFIG_PATH before invoking configure. I also improved how NSS is detected by trying nss-config if pkg-config isn't present, and as a last resort just use the lib name and force the user to setup the LIBS/LDFLAGS/CFLAGS etc properly. The previous last resort would add a range of various libs that would almost never be quite correct.
-
- Aug 31, 2009
-
-
Daniel Stenberg authored
QUOTE commands and the request used the same path as the connection had already changed to, it would decide that no commands would be necessary for the "DO" action and that was not handled properly but libcurl would instead hang.
-
- Aug 28, 2009
-
-
Kamil Dudka authored
libcurl-NSS. Originally reported at: https://bugzilla.redhat.com/show_bug.cgi?id=516056#c9
-
- Aug 24, 2009
-
-
Patrick Monnerat authored
- Introduced a SYST-based test to properly set-up name format when dealing with the OS/400 FTP server. - Fixed an ftp_readresp() bug preventing detection of failing control socket and causing FTP client to loop forever.
-
Daniel Stenberg authored
properly and provided a fix. http://curl.haxx.se/bug/view.cgi?id=2843008
-
Daniel Stenberg authored
read stdin in a non-blocking fashion. This also brings back -T- (minus) to the previous blocking behavior since it could break stuff for people at times.
-
- Aug 21, 2009
-
-
Michal Marek authored
ftp://example.com;type=i if the user specified ftp://example.com without the slash.
-
Daniel Stenberg authored
strdup() that could lead to segfault if it returned NULL. I extended his suggest patch to now have Curl_retry_request() return a regular return code and better check that.
-
Daniel Stenberg authored
Fix SIGSEGV on free'd easy_conn when pipe unexpectedly breaks Fix data corruption issue with re-connected transfers Fix use after free if we're completed but easy_conn not NULL
-
- Aug 13, 2009
-
-
Kamil Dudka authored
verbose error messages. Originally reported at: https://bugzilla.redhat.com/show_bug.cgi?id=516056
-
Daniel Stenberg authored
-
- Aug 12, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
sending of the TSIZE option. I don't like fixing bugs just hours before a release, but since it was broken and the patch fixes this for him I decided to get it in anyway.
-
- Aug 11, 2009
-
-
Daniel Stenberg authored
each test, so that the test suite can now be used to actually test the verification of cert names etc. This made an error show up in the OpenSSL- specific code where it would attempt to match the CN field even if a subjectAltName exists that doesn't match. This is now fixed and verified in test 311.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2835196), fixing a few compiler warnings when mixing ints and bools.
-
Dan Fandrich authored
-
- Aug 09, 2009
-
-
Dan Fandrich authored
torture tests to fail.
-
- Aug 01, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
should introduce an option to disable SNI, but as we're in feature freeze now I've addressed the obvious bug here (pointed out by Peter Sylvester): we shouldn't try to enable SNI when SSLv2 or SSLv3 is explicitly selected. Code for OpenSSL and GnuTLS was fixed. NSS doesn't seem to have a particular option for SNI, or are we simply not using it?
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2829955) mentioning the recent SSL cert verification flaw found and exploited by Moxie Marlinspike. The presentation he did at Black Hat is available here: https://www.blackhat.com/html/bh-usa-09/bh-usa-09-archives.html#Marlinspike Apparently at least one CA allowed a subjectAltName or CN that contain a zero byte, and thus clients that assumed they would never have zero bytes were exploited to OK a certificate that didn't actually match the site. Like if the name in the cert was "example.com\0theatualsite.com", libcurl would happily verify that cert for example.com. libcurl now better use the length of the extracted name, not assuming it is zero terminated.
-
Daniel Stenberg authored
only in some OpenSSL installs - like on Windows) isn't thread-safe and we agreed that moving it to the global_init() function is a decent way to deal with this situation.
-
Daniel Stenberg authored
CURLOPT_NOPROXY to "*", or to a host that should not use a proxy, I actually could still end up using a proxy if a proxy environment variable was set.
-