- 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
-
Fabian Keil authored
It makes no difference from curl's point of view but makes it more convenient to use the tests with a lws-normalizing proxy between curl and the test server.
-
Fabian Keil authored
They currently only work for 127.0.0.1 which is hardcoded and can't be easily changed.
-
Fabian Keil authored
.. and add a precheck to skip the test otherwise.
-
Fabian Keil authored
This makes it easier to skip it automatically when the test suite is used with external proxies.
-
Fabian Keil authored
-
Fabian Keil authored
-
Fabian Keil authored
Trailing spaces were left unmodifed, assuming they were intentional.
-
Fabian Keil authored
Consistently use CRLF instead. The mixed endings weren't documented so I assume they were unintentional. This change doesn't matter for curl itself but makes using the tests with a proxy between curl and the test server more convenient. Tests that consistently use no carriage returns were left unmodified as one can easily work around this.
-
- Nov 18, 2012
-
-
Daniel Stenberg authored
DNS cache entries populated with CURLOPT_RESOLVE were not properly freed again when done using the multi interface. Test case 1502 added to verify. Bug: http://curl.haxx.se/bug/view.cgi?id=3575448 Reported by: Alex Gruz
-
- Nov 17, 2012
-
-
Daniel Stenberg authored
4 more bug fixes and 4 more contributors
-
Daniel Stenberg authored
If we use memory functions (malloc, free, strdup etc) in C sources in libcurl and we fail to include curl_memory.h or memdebug.h we either fail to properly support user-provided memory callbacks or the memory leak system of the test suite fails. After Ajit's report of a failure in the first category in http_proxy.c, I spotted a few in the second category as well. These problems are now tested for by test 1132 which runs a perl program that scans for and attempts to check that we use the correct include files if a memory related function is used in the source code. Reported by: Ajit Dhumale Bug: http://curl.haxx.se/mail/lib-2012-11/0125.html
-
- Nov 16, 2012
-
-
Daniel Stenberg authored
Fixed checksrc warnings
-
Fabian Keil authored
They broke the NTLM tests from 2023 to 2031.
-