- Dec 06, 2012
-
-
Fabian Keil authored
On FreeBSD this fixes the warning: Use of uninitialized value $p in string eq at /usr/local/lib/perl5/5.14.2/BSDPAN/BSDPAN.pm line 36.
-
- Dec 05, 2012
-
-
Steve Holme authored
small compilation fix
-
Stanislav Ivochkin authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
- Dec 04, 2012
-
-
Yang Tse authored
-
Yang Tse authored
BLANK_AT_MAKETIME may be used in our Makefile.am files to blank LIBS variable used in generated makefile at makefile processing time. Doing this functionally prevents LIBS from being used for all link targets in given makefile.
-
Daniel Stenberg authored
This handling already works with the easy-interface code. When a request is sent on a re-used connection that gets closed by the server at the same time as the request is sent, the situation may occur so that we can send the request and we discover the broken connection as a RECV_ERROR in the PERFORM state and then the request needs to be retried on a fresh connection. Test 64 broke with 'multi-always-internally'.
-
Yang Tse authored
-
- Dec 03, 2012
-
-
Yang Tse authored
Currently, LIBS is already used through other macros.
-
Kamil Dudka authored
Although it is not explicitly stated in the documentation, NSS uses *pRetCert and *pRetKey even if the client authentication hook returns a failure. Namely, if we destroy *pRetCert without clearing *pRetCert afterwards, NSS destroys the certificate once again, which causes a double free. Reported by: Bob Relyea
-
- Nov 30, 2012
- Nov 29, 2012
-
-
Yang Tse authored
-
- Nov 28, 2012
- Nov 27, 2012
-
-
Yang Tse authored
-
- Nov 26, 2012
-
-
Yang Tse authored
-
Yang Tse authored
-
Fabian Keil authored
.. that are sent when auth-negotiating before a chunked upload or when setting the 'Transfer-Encoding: chunked' header and intentionally sending no content. Adjust test565 and test1333 accordingly.
-
- Nov 25, 2012
-
-
Daniel Stenberg authored
You can do custom commands to FTP without sending anything by using the CURLOPT_NOBODY, which -I sets.
-
Lijo Antony authored
Blocking connect on the socket has been removed from opensocket callback. opensocket just opens a new socket and gives it back to libcurl and libcurl will take care of the connect. sockopt_callback has also been removed, as it is no longer required.
-
- Nov 23, 2012
-
-
Yang Tse authored
AIX sys/poll.h header file defines 'events' and 'revents' as C preprocessor macros. Usage of these literals in libcurl's external API was introduced in commit de24d7bd causing AIX build failures. Appropriate inclusion of sys/poll.h by libcurl's external interface fixes AIX build and usage issues while avoiding a SONAME bump.
-
Steve Holme authored
-
Daniel Stenberg authored
runtests.pl -am now uses the "PASS/FAIL: [desc]" output for each executed test. You can run 'make test-am' in the root build directory to invoke that. The reason for this output style is to better allow generic test suite parsers to also grok our test output. The test Makefile now also tests that perl was indeed found and that the PERL variable points to an executable before it tries to run the main test perl script runtests.pl,
-
- Nov 21, 2012
-
-
Fabian Keil authored
Otherwise curl would have to guess where the body ends.
-
Fabian Keil authored
It's against the spec and caused test failures when header and response were read from the network separately in which case bug #39 wasn't triggered.
-
Daniel Stenberg authored
-
Lijo Antony authored
Added an example for demonstrating the usage of curl multi interface with boost::asio in c++
-
Daniel Stenberg authored
the newly introduced hostcheck.h/c is missing in the Visual Studio Makefiles as obj file. Bug: http://curl.haxx.se/mail/lib-2012-11/0176.html
-
- Nov 20, 2012
-
-
Daniel Stenberg authored
The conversions from ssize_t to int need to be typecasted.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Nov 19, 2012
-
-
Anthony Bryan authored
-
Fabian Keil authored
If curl_multi_fdset() sets maxfd to -1, the socket detection loop is skipped and thus !found_new_socket is no cause for alarm.
-
Kamil Dudka authored
Bug: http://curl.haxx.se/mail/lib-2012-11/0095.html
-
Fabian Keil authored
-