Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-05 | inets: Mend broken max_clients check | Ingela Anderton Andin | |
Conflicts: lib/inets/src/http_server/httpd_manager.erl Conflicts: lib/inets/test/inets_sup_SUITE.erl | |||
2014-02-05 | inets: Start CT'ify httpd_SUITE | Ingela Anderton Andin | |
Conflicts: lib/inets/test/httpd_SUITE.erl | |||
2014-02-05 | inets: Remove use of default gen_server timeout | Ingela Anderton Andin | |
If you need a timeout between client and server use a server side timeout instead of the default gen_server:call/2 timeout that is quite useless. Also remove legacy code that has no further use. | |||
2014-02-05 | Fix http_request:http_headers/1 to send content-length when length is zero | CA Meijer | |
In R16B01, the http_request:http_headers/1 function removes the content-length field from the HTTP headers if the content length is zero. This results in some (perhaps many) HTTP servers rejecting POSTs and PUTs without data with a 411 status word. From RFC2616, section 14.13: "Any Content-Length greater than or EQUAL to zero is a valid value". | |||
2014-02-05 | Fix httpd config option 'keep_alive_timeout' | Johannes Weißl | |
The documentation states that the value is in seconds, which was true when using the Apache like configuration file, but not true when using the proplist style configuration. | |||
2014-02-05 | Fix httpd config option 'script_timeout' | Johannes Weißl | |
This fixes the usage of the httpd configuration option 'script_timeout', which got ignored before. The documentation states that the value is in seconds, which was true when using the Apache like configuration file, but not true when using the proplist style configuration. | |||
2014-02-05 | inets: Restore ftp test files for the inets_{,sup_}SUITE to not fail | Hans Nilsson | |
2014-02-05 | inets: Add crypto start check to ssl test cases | Ingela Anderton Andin | |
2014-02-05 | ftp: fix sockname dialyzer warning including ftp:sockname/1 bug | Hans Nilsson | |
2014-02-05 | ftp,ssl: Fixes broken type link (ssloption). | Hans Nilsson | |
2014-02-05 | ftp: Adds dynamic cert generation to tests. | Hans Nilsson | |
2014-02-05 | ftp: Clean Makefile and conf file | Hans Nilsson | |
2014-02-05 | ftp: Linking rfc-refs. | Hans Nilsson | |
2014-02-05 | ftp: Add documentation. | Hans Nilsson | |
2014-02-05 | ftp: delete old test files | Hans Nilsson | |
Conflicts: lib/inets/test/ftp_suite_lib.erl | |||
2014-02-05 | ftp: small fixes | Hans Nilsson | |
2014-02-05 | ftp: Add ftps documentation | Hans Nilsson | |
2014-02-05 | ftp: Add timeouts to ssl:connect | Hans Nilsson | |
2014-02-05 | ftps: working | Hans Nilsson | |
2014-02-05 | . | Hans Nilsson | |
2014-02-05 | added some printouts | Hans Nilsson | |
2014-02-05 | ftp: towards a working ftps, chapter 1 | Hans Nilsson | |
2014-02-05 | ftp: old ftp_SUITE re-written and works | Hans Nilsson | |
2014-02-05 | ftp: Implement ftps (upgrade to TLS) | Ingela Anderton Andin | |
2014-02-05 | ftp: Implement ftps (upgrade to TLS) | Ingela Anderton Andin | |
2014-02-05 | [eldap, inets]: fix testcases when ssl not is present | Fredrik Gustafsson | |
Conflicts: lib/eldap/test/eldap_basic_SUITE.erl | |||
2014-02-05 | [inets/httpd] Improved request handler terminate error-log entry | Micael Karlberg | |
If a request handler terminates abnormally (terminate reason not normal), the error-log entry was a bit obtuse ("Internal Server Error"). This has been improved so that the log entry now also include the actual terminate reason. | |||
2014-02-05 | [inets/httpd] Improved access log entry | Micael Karlberg | |
Sometimes the size of a response could be as a string. | |||
2014-02-05 | [inets/httpd] Logging cleanup | Micael Karlberg | |
Remove logging when fo keep-alive connection timeout. This is a normal event (feature) not an error. | |||
2014-02-05 | [inets/httpd] Fixed mod_head handling of "new" response | Micael Karlberg | |
2014-02-05 | inets: httpc - Remove dead error handling code | Ingela Anderton Andin | |
Some error handling is only relevant for functions that end up in gen_server:call and not in gen_server:cast. | |||
2014-02-05 | inets: httpc make httpc_cancel_request/[1,2] asynchronous | Ingela Anderton Andin | |
Conflicts: lib/inets/src/http_client/httpc_handler.erl | |||
2014-02-05 | Remove http_chunk:decode/4 as it is no longer used | Masatake Daimon | |
http_chunk:decode/4, the side-effecting chunk decoder, was only used by httpc_handler:handle_http_body/2 but now it's completely unused. Conflicts: lib/inets/src/http_client/httpc_handler.erl | |||
2014-02-05 | Fix {stream, {self, once}} in httpc | Masatake Daimon | |
Previously the only difference between {stream, self} and {stream, {self, once}} was an extra Pid in the stream_start message due to a bug in httpc_handler. It was immediately sending a bunch of messages till the end instead of waiting for httpc:stream_next/1 being called. | |||
2014-02-05 | httpc: Allow content body in DELETE requests | James Wheare | |
2014-02-05 | httpc: Enhanched error handling | Ingela Anderton Andin | |
2014-02-05 | inets: added testcase for keep_alive_timeout | Fredrik Gustafsson | |
2014-02-05 | Add test for httpd config option 'script_timeout' | Johannes Weißl | |
The option got ignored before 720721e. | |||
2014-02-05 | inets: httpc improve pipelining | Ingela Anderton Andin | |
2014-02-05 | inets: Add stronger RSA test-keys | Ingela Anderton Andin | |
The ones provided will fail inets test cases as default ssl will negotiate stronger cipher suites now that will fail the with the weak keys. | |||
2014-02-05 | Test nocache option of mod_cgi and mod_esi | Johannes Weißl | |
Tests that the nocache options work and can be used independently from each other. This was broken before c8ef69c. Conflicts: lib/inets/test/httpd_basic_SUITE.erl | |||
2014-02-05 | inets: added simple testcase for option erl_script_nocache | Fredrik Gustafsson | |
2014-02-05 | Fix httpd config option 'erl_script_nocache' | Johannes Weißl | |
This fixes the usage of the httpd configuration option 'erl_script_nocache', which got ignored before. Attention: Before, the option 'script_nocache' also changed the behavior for mod_esi, now it only affects mod_cgi. | |||
2014-02-05 | [inets, ssl]: make log_alert configurable as option in ssl, SSLLogLevel ↵ | Fredrik Gustafsson | |
added as option to inets conf file Conflicts: lib/inets/src/http_lib/http_transport.erl lib/inets/src/inets_app/inets.appup.src lib/ssl/src/ssl.appup.src | |||
2014-02-05 | fix: typo, inets/doc/src/httpd | tomaon | |
2014-02-05 | Fix some errors in the inets documentation | Johannes Weißl | |
2014-02-05 | Update release notes | Erlang/OTP | |
Conflicts: lib/inets/doc/src/notes.xml | |||
2014-02-05 | inets: stop block timer with the right arguments | Fredrik Gustafsson | |
2014-02-05 | inets httpc: Revert incorrect commit regarding cookie handling. | Ingela Anderton Andin | |
2014-02-05 | Added guard for invalid field and values in headers | Fredrik Gustafsson | |