Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-04 | Merge branch 'maint' | Ingela Anderton Andin | |
Conflicts: OTP_VERSION erts/vsn.mk lib/crypto/c_src/crypto.c lib/crypto/src/crypto.erl lib/ssh/src/ssh.erl | |||
2017-04-03 | inets: Do not test https/ftps if crypto can not start | Ingela Anderton Andin | |
2017-03-15 | inets/ftp: Testcase for repeating chunked fetch | Hans Nilsson | |
2017-03-01 | Fix typos: lenght -> length | Myron Marston | |
2017-02-14 | Fixed typos in lib/inets | Andrew Dryga | |
2016-12-21 | inets: httpc - Prevent hanging user process | Ingela Anderton Andin | |
Input should be checked and httpc_handler process shall terminate gracefully on errors so that user process will in hang in gen_server:call. | |||
2016-12-20 | inets: httpc - Chunk size decoding could fail | Ingela Anderton Andin | |
Correct chunk decoding by adding missing argument to match. The symptom was that chunk decoding sometimes failed depending on stream data arrival timing. | |||
2016-12-14 | inets: httpc - Correct redirection host header | Ingela Anderton Andin | |
RFC2616 Sect 14.23: The Host request-header field specifies the Internet host AND port number. | |||
2016-12-07 | Update copyright-year | Erlang/OTP | |
2016-12-06 | Merge branch 'ingela/inets/httpd-profiles/OTP-14082' into maint | Ingela Anderton Andin | |
* ingela/inets/httpd-profiles/OTP-14082: inets: Add Profile argument missed by commit fdfda2fab0921d409789174556582db28141448e | |||
2016-12-05 | inets: Add Profile argument missed by commit ↵ | Ingela Anderton Andin | |
fdfda2fab0921d409789174556582db28141448e | |||
2016-10-06 | Fix inets ftp bug related to multiple lines resp | Johan Sommerfeld | |
Fixes a bug that makes the ftp client end up in bad state if there is a multi line response from the server and the response number is in the message being sent. | |||
2016-09-27 | Update test case docs with RFC-7231 | Ahmed Shafeeq Bin Mohd Shariff | |
2016-09-18 | Update behavior of httpc:request to match RFC-7231 | Ahmed Shafeeq Bin Mohd Shariff | |
- The behavior of httpc:request when autoredirect = true is not correct according to the latest update in RFC-7231. This patch corrects the autoredirect behavior. | |||
2016-08-09 | Merge branch 'maint-19' into maint | Lukas Larsson | |
Conflicts: lib/ssl/src/ssl.appup.src | |||
2016-08-08 | inets: Add mod_esi test for PUT | Raimo Niskanen | |
2016-08-01 | Test inet6fb4 in basic suite | Raimo Niskanen | |
2016-07-29 | Actually verify result of testcase | Raimo Niskanen | |
2016-07-29 | Fix inets_sup_SUITE for local tests | Raimo Niskanen | |
2016-07-28 | Add test for inet6fb4 validation | Edwin Fine | |
2016-06-14 | Merge branch 'maint' | Henrik Nord | |
Conflicts: OTP_VERSION lib/inets/vsn.mk lib/ssl/test/ssl_basic_SUITE.erl lib/ssl/vsn.mk | |||
2016-06-09 | inets: Handle multiple \t in mime types file | Ingela Anderton Andin | |
2016-06-09 | ftp: logging of server start in ftp_SUITE | Hans Nilsson | |
2016-06-09 | ftp: Introduce search path for ftp servers to use in ftp_SUITE | Hans Nilsson | |
2016-06-07 | httpc: Replaced deprecated module random with recommended module rand in ↵ | Hans Nilsson | |
httpc_SUITE | |||
2016-06-03 | ftp: make rottend tc:s work again | Hans Nilsson | |
2016-06-03 | ftp: Test suites updates | Hans Nilsson | |
- add timetrap to ftp test suite - removed non-existing tc from ftp_SUITE:all() - moved tc:s missplaced in ftp_SUITE | |||
2016-06-03 | ftp: fix error code errors incl extend test suites | Hans Nilsson | |
2016-05-23 | inets: Use test_server app tests and remove legacy test_server code | Ingela Anderton Andin | |
FTP tests needed some refactoring as some tests where lost to the ftp_suite_lib module that was not run. | |||
2016-05-18 | [inets] Remove calls to the inets_time_compat module | Lars Thorsen | |
2016-04-25 | inets: Add peer_cert to ESI environment | Ingela Anderton Andin | |
2016-04-21 | inets: Add peer_cert to ESI environment | Ingela Anderton Andin | |
2016-04-13 | Merge branch 'henrik/update-copyrightyear' | Henrik Nord | |
* henrik/update-copyrightyear: update copyright-year | |||
2016-04-05 | Merge branch 'waisbrot/remove-mod_include/PR-988/OTP-13445' | Hans Nilsson | |
2016-04-05 | Merge branch 'FabioBatSilva/httpc-delete-body/PR-972/OTP-13383' | Lars Thorsen | |
* FabioBatSilva/httpc-delete-body/PR-972/OTP-13383: inets: Add DELETE Body to client remove whitespaces | |||
2016-03-17 | Remove references to old modules | Nathaniel Waisbrot | |
mod_include was already gone in 18, and webtool is out in 19, but some references remained in example config files. | |||
2016-03-15 | update copyright-year | Henrik Nord | |
2016-03-07 | Merge branch 'maint' | Raimo Niskanen | |
2016-02-26 | Remove multiple inclusion of ct.hrl | Björn Gustavsson | |
2016-02-22 | inets: Add DELETE Body to client | FabioBatSilva | |
2016-02-17 | Makefiles: Remove test_server from include path and code path | Björn Gustavsson | |
Since no test suites includede test_server.hrl, there is no need to have test_server in the include path or code path. | |||
2016-02-17 | Eliminate use of test_server.hrl and test_server_line.hrl | Björn Gustavsson | |
As a first step to removing the test_server application as as its own separate application, change the inclusion of test_server.hrl to an inclusion of ct.hrl and remove the inclusion of test_server_line.hrl. | |||
2016-02-12 | tftp: support transfer of files > 65535 blocks | Michael Santos | |
The block count is an unsigned 2 byte integer. The common behaviour of tftp clients and servers is to overflow the block count and wrap the counter to 0 in order to support files larger than 32M. Modify the tftp implementation to do the same rollover. Interoperability was tested by transferring a 1.4G file using the HPA tftp client. | |||
2016-02-02 | Merge branch 'palas/maint' into maint | Zandra | |
* palas/maint: inets: Add PATCH method to client and server OTP-13286 | |||
2016-01-29 | Merge branch 'ia/maint/inets/mod_alias/OTP-13248' into maint-18 | Erlang/OTP | |
* ia/maint/inets/mod_alias/OTP-13248: inets: Prepare for release inets: Traverse all aliases looking for the longest match inets: Use re instead of inets_regexp # Conflicts: # lib/inets/vsn.mk | |||
2016-01-28 | inets: Use re instead of inets_regexp | Ingela Anderton Andin | |
2015-12-08 | inets: Add PATCH method to client and server | Pablo Lamela | |
2015-12-07 | Merge branch 'ia/inets/windows-comp' into maint | Ingela Anderton Andin | |
* ia/inets/windows-comp: inets: Adjust makefile to new windows compiler | |||
2015-11-27 | inets: Add warning header in "chunk trailer" when mod_esi callback times out ↵ | Ingela Anderton Andin | |
or fails Also remove legacy debug macros and add help function httpd_util:error_log/2 to avoid code duplication. | |||
2015-11-20 | Merge branch 'weisslj/fix-inets-crash-on-invalid-chunk-size' into maint | Zandra | |
* weisslj/fix-inets-crash-on-invalid-chunk-size: inets: Terminate really gracefully on bad chunk OTP-13117 |