- Oct 06, 2009
-
-
Dan Fandrich authored
-
- Oct 05, 2009
-
-
Yang Tse authored
-
- 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
-
Daniel Stenberg authored
-
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 29, 2009
-
-
Yang Tse authored
make errno available as a preprocessor macro.
-
- Sep 28, 2009
-
-
Dan Fandrich authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
- Sep 27, 2009
-
-
Daniel Stenberg authored
-
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.
-
Daniel Stenberg authored
-
- 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.
-
Daniel Stenberg authored
-
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
-
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.
-
Dan Fandrich authored
-
Yang Tse authored
-
- Sep 24, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
-
- Sep 23, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Sep 21, 2009
-
-
Guenter Knauf authored
-
Guenter Knauf authored
added support for new SQLite cert database format: added a runtime check for version 3.12.0, and depending on the result add 'sql:' prefix to cert database directory so that newer SQLIte database format works.
-
Guenter Knauf authored
added aditional check for the directory specified with SSL_DIR, and fall back to hardcoded directory if not a valid directory.
-
- Sep 18, 2009
-
-
Yang Tse authored
fix compiler warning: comparison between signed and unsigned
-
- Sep 17, 2009
- 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.
-
Yang Tse authored
Attempt to silence bogus compiler warning: "Potential null pointer dereference through ptr is detected"
-
Yang Tse authored
Attempt to silence bogus compiler warning: "Potential null pointer dereference through ptr is detected"
-
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.
-