Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-10 | inets: tftpd - Mend broken fd option | Ingela Anderton Andin | |
2015-09-10 | inets: httpd - Mend broken fd option | Ingela Anderton Andin | |
2015-09-09 | Correct conversion from seconds to milliseconds | Jimmy Zöger | |
2015-09-08 | inets: Forward connection errors with https proxy | Kirilll Zaborsky | |
httpc should return meaningful error reason disregarding whether it is being used with http proxy or not | |||
2015-09-08 | inets: Fix broken links | Ingela Anderton Andin | |
2015-09-08 | inets: Fix copy paste error | Ingela Anderton Andin | |
2015-09-08 | inets: ftp - Remove information about alternative solutions | Ingela Anderton Andin | |
Currently there is no plans in modernizing/changing the API so there is no real value of pointing out alternative solutions. | |||
2015-09-08 | inets: httpd - Add links and small corrections | Ingela Anderton Andin | |
2015-09-08 | inets: httpc - Clarify/correct documentation | Ingela Anderton Andin | |
Remove legacy inet6fb4 option from documentation even if the code will still accept it. | |||
2015-09-08 | inets: Align with alphabetical order and clean local anchor handling | Ingela Anderton Andin | |
Functions in the same module can be referenced as #Function-Arity, no need to make special markers for them. | |||
2015-09-08 | inets: ftp - add links and fix typos | Ingela Anderton Andin | |
2015-09-08 | inets: Use ASSCI ' | Ingela Anderton Andin | |
2015-09-03 | inets: httpd - Add format_status/2 to httpd_request_handler | Ingela Anderton Andin | |
Avoid printing sensitive information in supervisor logs | |||
2015-09-01 | Inets Reference Manual | tmanevik | |
Editorial changes | |||
2015-09-01 | Inets User Guide | tmanevik | |
Editorial Changes | |||
2015-09-01 | inets: sorted functions alphabetically | tmanevik | |
2015-09-01 | inets: Remove documentation of legacy API | tmanevik | |
2015-07-16 | inets: cancel for handler with no requests | Kirilll Zaborsky | |
httpc_handler should react properly to cancel requests even when the request to be cancelled was already finished but httpc_manager did not get notified about that yet | |||
2015-06-23 | Prepare release | Erlang/OTP | |
2015-06-18 | Change license text to APLv2 | Bruce Yinhe | |
2015-06-16 | inets: Fix race condition in httpc | Ingela Anderton Andin | |
If the socket is closed by the peer do not try to close it again. Solves OTP-11845 | |||
2015-06-16 | inets: Remove use of httpd_conf:clean/1 and httpd_conf:custom_clean/3 | Ingela Anderton Andin | |
Internal use of the function white_space_clean/1 could probably be done in a much better way using re-module and removing a lot of legacy code. But we will have to do this later, due to lack of time, we want to make this commit as little work as possible. | |||
2015-06-15 | inets: Remove use of httpd_conf:make_integer/1 | Ingela Anderton Andin | |
2015-06-15 | inets: Deprecate functions in util module httpd_conf.erl | Ingela Anderton Andin | |
These functions should not be used, there exists better functions in the standard libraries. | |||
2015-06-10 | Merge branch 'scrapinghub/proxy_addr_for_keeped_alive_request' | Zandra Hird | |
* scrapinghub/proxy_addr_for_keeped_alive_request: inets: set proxy address for requests from keep-alive queue OTP-12822 | |||
2015-06-09 | Merge branch 'scrapinghub/asn1_for_http_proxy_suite' | Zandra Hird | |
* scrapinghub/asn1_for_http_proxy_suite: inets: add asn1 to httpc proxy suite | |||
2015-06-09 | inets: set proxy address for requests from keep-alive queue | Kirilll Zaborsky | |
httpc_handler should set correct address of the connected host and not ignore proxy option of the profile while sending requests taken out of keep-alive queue | |||
2015-06-08 | Merge branch 'ia/inets/name-spaces/OTP-12674' | Ingela Anderton Andin | |
* ia/inets/name-spaces/OTP-12674: inets: Modernize code inets: Add profile option | |||
2015-06-05 | inets: add asn1 to httpc proxy suite | Kirilll Zaborsky | |
httpc_proxy_SUITE should have asn1 properly started to be invokable standaone | |||
2015-06-05 | Merge branch 'scrapinghub/proper_stop_on_handling_keepalive_queue' | Zandra Hird | |
* scrapinghub/proper_stop_on_handling_keepalive_queue: inets: proper stop for httpc_handler K-A queue failure OTP-12803 | |||
2015-06-04 | inets: correct the calls in start_apps | Henrik Nord | |
2015-06-04 | inets: Modernize code | Ingela Anderton Andin | |
* Remove debug macros that mimics call trace. * Remove comments that does not add value. * Structure code | |||
2015-06-04 | inets: Add profile option | Ingela Anderton Andin | |
To enable the HTTP server to run in a virtualized environment, where there can be more that one server that has the same bind_address and port, we add a new option profile. The profile name will be used in concatenation with bind_address and port to identify the HTTP server instance. The name profile was chosen as there is a similar concept in the HTTP client where profile names can be used to instantiate client configurations. | |||
2015-06-03 | Merge branch 'scrapinghub/async-typo' | Henrik Nord | |
* scrapinghub/async-typo: Typo 'asynchroneous' fix | |||
2015-06-02 | restore broken file | Henrik Nord | |
2015-06-02 | Merge branch 'maint' | Henrik Nord | |
Conflicts: OTP_VERSION lib/inets/test/httpd_SUITE.erl lib/inets/vsn.mk lib/ssh/src/ssh.erl lib/ssh/vsn.mk lib/ssl/src/ssl.appup.src lib/ssl/vsn.mk | |||
2015-06-01 | inets: proper stop for httpc_handler K-A queue failure | Kirilll Zaborsky | |
httpc_handler should respond with proper {stop, Reason, State} message when sending request from keep-alive queue fails | |||
2015-06-01 | Update release notes | Erlang/OTP | |
2015-05-29 | inets: Prepare for release | Ingela Anderton Andin | |
2015-05-29 | inets: Add customize option | Ingela Anderton Andin | |
Many HTTP headers are optional, and it could be desirable for the server to filter and maybe even alter them without replacing the mod_* modules that generate/process them. Add new behaviour httpd_custom_api with default implementation in httpd_custom.erl. Add behaviour module in 18 as then we can specify optional callbacks. | |||
2015-05-28 | Typo 'asynchroneous' fix | Kirilll Zaborsky | |
2015-05-27 | Merge remote-tracking branch 'erlang/pr/741' | Henrik Nord | |
* erlang/pr/741: Minor misprints | |||
2015-05-27 | Update application versions | Hans Bolinder | |
2015-05-26 | Minor misprints | Kirill Zaborsky | |
2015-05-18 | Merge branch 'maint' | Zandra Hird | |
Conflicts: OTP_VERSION lib/ssh/doc/src/ssh.xml lib/ssh/vsn.mk | |||
2015-05-18 | Update release notes | Erlang/OTP | |
2015-05-13 | Revert "Prepare release" | Henrik Nord | |
This reverts commit e09dd66dc4d89c62ddfd8c19791f9678d5d787c6. | |||
2015-05-12 | Prepare release | Erlang/OTP | |
2015-05-12 | inets: reject negative content-length | Hans Nilsson | |
2015-05-11 | Merge branch 'zandra/mime-types-config/OTP-12731' | Zandra Hird | |
* zandra/mime-types-config/OTP-12731: make it possible to use a file to configure mime types |