- Sep 01, 2012
-
-
Joe Mason authored
-
- Aug 31, 2012
-
-
Daniel Stenberg authored
The test would hang and get aborted with a "ABORTING TEST, since it seems that it would have run forever." until I prevented that from happening. I also fixed the data file which got broken CRLF line endings when I sucked down the path from Joe's repo == my fault. Removed #37 from KNOWN_BUGS as this fix and test case verifies exactly this.
-
Joe Mason authored
If we need an NTLM connection and one already exists, always choose that one.
-
Joe Mason authored
Add test2032 to test that NTLM does not switch connections in the middle of the handshake
-
- Aug 28, 2012
-
-
Daniel Stenberg authored
-
- Aug 27, 2012
-
-
Daniel Stenberg authored
"Currently you can only share DNS and/or COOKIE data" is incorrect since also SSL sessions can be shared. Bug: http://curl.haxx.se/bug/view.cgi?id=3562261 Reported by: Joe Mason
-
Dave Reisner authored
It's conceivable that after the first time curl_multi_perform returns, the outvalue still_running will be 0, but work will have been done. This is shown by a workload of small, purely file:// based URLs. Ensure that we always read pending messages off the multi handle by forcing the while loop to run at least once.
-
Daniel Stenberg authored
CURLOPT_USE_SSL should be set to CURLUSESSL_* and nothing else in modern libcurl versions.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Armel Asselin authored
... using SSH-agent
-
- Aug 26, 2012
-
-
Daniel Stenberg authored
-
- Aug 23, 2012
-
-
Daniel Stenberg authored
-
- Aug 21, 2012
-
-
Daniel Stenberg authored
Bug: http://curl.haxx.se/bug/view.cgi?id=3559845 Reported by: Olivier Berger
-
- Aug 18, 2012
-
-
Daniel Stenberg authored
-
Nick Zitzmann authored
In Mountain Lion, Apple added TLS 1.1 and 1.2, and deprecated a number of SecureTransport functions, some of which we were using. We now check to see if the replacement functions are present, and if so, we use them instead. The old functions are still present for users of older cats. Also fixed a build warning that started to appear under Mountain Lion
-
- Aug 16, 2012
-
-
Daniel Stenberg authored
-
Gokhan Sengun authored
Commit b91d29a28e170c16d65d956db79f2cd3a82372d2 introduces a bug and breaks Curl_closesocket function. sock_accepted flag for the second socket should be tagged as TRUE before the sockopt callback is called because in case the callback returns an error, Curl_closesocket function is going to call the - fclosesocket - callback for the accept()ed socket
-
Gokhan Sengun authored
For active FTP connections, applications may need setting the sockopt after accept() call returns successful. This fix gives a call to the callback registered with CURL_SOCKOPTFUNCTION option. Also a new sock type - CURLSOCKTYPE_ACCEPT - is added. This type is to be passed to application callbacks with - purpose - parameter. Applications may use this parameter to distinguish between socket types.
-
Daniel Stenberg authored
Removing this option as it currently only functions to lure people into wrongly using it and falsely believing that libcurl will work fine without using nonblocking sockets internally - which leads to hard to track or understand errors.
-
- Aug 14, 2012
-
-
Ant Bryan authored
-
- Aug 10, 2012
-
-
Daniel Stenberg authored
-
Ant Bryan authored
"If this option is used several times, the last one will be used." uniformity
-
Daniel Stenberg authored
Commit e351972b brought in the ssh agent support but some uses of the libssh2 agent API was done unconditionally which wasn't good enough since that API hasn't always been present.
-
Daniel Stenberg authored
... to please checksrc.pl
-
- Aug 09, 2012
-
-
Kamil Dudka authored
... and make the list of cipher-suites in nss.c readable by humans. Bug: http://curl.haxx.se/mail/archive-2012-08/0016.html
-
Kamil Dudka authored
-
- Aug 08, 2012
-
-
Daniel Stenberg authored
5 more bug fixes, one change, 6 contributors
-
Armel Asselin authored
-
Armel Asselin authored
CURLSSH_AUTH_AGENT is a new auth type for SSH
-
Daniel Stenberg authored
I am about to merge the first patch that adds changes into the pending release, and thus we bump the minor number.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Fixed this (harmless) clang-analyzer warning. Also fixed the source indentation level.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
By reading the ->head pointer and using that instead of the ->size number to figure out if there's a list remaining we avoid the (false positive) clang-analyzer warning that we might dereference of a null pointer.
-
Daniel Stenberg authored
I suspect this is a regression introduced in commit 207cf150, included since 7.24.0. Avoid showing '(nil)' as hostname in verbose output by making sure the hostname fixup function is called early enough to set the pointers that are used for this. The name data is set again for each request even for re-used connections to handle multiple hostnames over the same connection (like with proxy) or that the casing etc of the host name is changed between requests (which has proven to be important at least once in the past). Test1011 was modified to use a redirect with a re-used a connection since it then showed the bug and now lo longer does. There's currently no easy way to have the test suite detect 'nil' texts in verbose ouputs so no tests will detect if this problem gets reintroduced. Bug: http://curl.haxx.se/mail/lib-2012-07/0111.html Reported by: Gisle Vanem
-
Nick Zitzmann authored
-
Guenter Knauf authored
-
- Aug 07, 2012
-
-
Daniel Stenberg authored
These are now addressed: 323 - patch - select.c / Curl_socket_check() interrupted 325 - Avoid leak of local device string when reusing connection
-
Daniel Stenberg authored
... and removal of trailing whitespace on a single line
-