aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src/inets_app
AgeCommit message (Collapse)Author
2017-01-30inets: Prepare for releaseIngela Anderton Andin
2016-05-03inets: Prepare for releaseIngela Anderton Andin
2016-05-03inets: Put back inets_regexp module in OTP 18Ingela Anderton Andin
Put back unused module inets_regexp and remove it in OTP 19 instead as it is an incompatibility, although it is an undocumented module and should not affect other applications (the world is not perfect).
2016-04-21inets: Prepare for releaseIngela Anderton Andin
2016-03-17inets: Prepare for releaseIngela Anderton Andin
2016-01-29Merge branch 'ia/maint/inets/mod_alias/OTP-13248' into maint-18Erlang/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-28inets: Use re instead of inets_regexpIngela Anderton Andin
2015-12-15inets: Include behaviour modules in install targetIngela Anderton Andin
2015-09-17inets: Prepare for releaseIngela Anderton Andin
2015-06-18Change license text to APLv2Bruce Yinhe
2015-06-02Merge 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-05-29inets: Add customize optionIngela 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-04-28inets: Remove dialyzer warning for inets_libErland Schönbeck
2015-04-07inets: Remove SSI (Server Side Includes)Ingela Anderton Andin
SSI is an old technique implemented by mod_include, that was badly tested and not recommended to use, as having the server parse HTML pages is a double edged sword! It can be costly for a heavily loaded server to perform parsing of HTML pages while sending them. Furthermore, it can be considered a security risk to have average users executing commands in the name of the Erlang node user.
2015-03-24inets: Add new module inets_time_compat with new time APIErland Schönbeck
The new module is backwards compatible.
2015-03-20inets: Suppress deprecated warning on erlang:now/0Erland Schönbeck
2015-03-20inets: Cleanup of multiple copies of functionsErland Schönbeck
Add inets_lib with common functions used by multiple modules
2014-12-01inets: Prepare for releaseIngela Anderton Andin
2014-09-08inets: Soft upgradeIngela Anderton Andin
2014-06-17inets: Prepare for releaseIngela Anderton Andin
2014-05-26inets: Prepare for releaseIngela Anderton Andin
Do application restart as old soft upgrade was not correct
2014-03-20Introduce runtime_dependencies in .app filesRickard Green
Most dependencies introduced are exactly the dependencies to other applications found by xref. That is, there might be real dependencies missing. There might also be pure debug dependencies listed that probably should be removed. Each application has to be manually inspected in order to ensure that all real dependencies are listed. All dependencies introduced are to application versions used in OTP 17.0. This since the previously used version scheme wasn't designed for this, and in order to minimize the work of introducing the dependencies.
2014-02-25inets: Prepare for releaseHans Nilsson
2014-02-18Fix non-library appup files according to issue #240Tobias Schlager
Fix the appup files of runtime_tools and os_mon with wildcard version regexps. inets, odbc and ssh regexps have been corrected to match as originally intended.
2014-01-10inets: Mend broken max_clients checkIngela Anderton Andin
Conflicts: lib/inets/src/http_server/httpd_manager.erl
2013-11-12[inets/httpd] Fixed mod_head handling of "new" responseMicael Karlberg
2013-01-23inets: Prepare for R16Ingela Anderton Andin
2013-01-15Implement ./otp_build configure --enable-silent-rulesAnthony Ramine
With silent rules, the output of make is less verbose and compilation warnings are easier to spot. Silent rules are disabled by default and can be disabled or enabled at will by make V=0 and make V=1.
2012-11-16Merge branch 'maint'Fredrik Gustafsson
* maint: Increased waiting time to check if socket is down Fine adjustments of slowdos alg Changes to slowdos testcase Doc for test case slowdose Bumped version nr Added testcases för minimum_bytes_per_second option Reduced checking of bytes per second to every second Documentation for minimum_bytes_per_seconds option Changed property to minimum_bytes_per_second and checking if is integer on start Changed to Bytes Per Second when checking clients rate, new options {byte_limit, integer()} Option {bit_limit, integer()} to close sockets where clients are too slow
2012-11-09Bumped version nrFredrik Gustafsson
2012-10-02inets: Dialyzer fixesIngela Anderton Andin
2012-08-31Update copyright yearsBjörn-Egil Dahlberg
2012-07-11Merge branch 'bmk/inets/otp_version_dependent_behaviour_def/OTP-10095' into ↵Micael Karlberg
bmk/inets/inets591_integration
2012-07-11Merge branch 'bmk/inets/httpc/error_during_session_update/OTP-10093' into ↵Micael Karlberg
bmk/inets/inets591_integration
2012-07-11Merge branch 'bmk/inets/httpc/cancel_request/OTP-10092' into ↵Micael Karlberg
bmk/inets/inets591_integration
2012-06-05Update to work with whitespace in exec pathLukas Larsson
OTP-10106 OTP-10107
2012-05-23[inets] Removed R14B compatible version of behaviour definitionMicael Karlberg
Removed R14B compatible version of (inets-service and tftp) behaviour definition. OTP-10095
2012-05-22[inets/httpc] Updated docs, release notes and appupMicael Karlberg
Added documentation for new (httpc:which_sessions/0,1) and updated (httpc:info/0,1) functions. Also updated appup. OTP-10093
2012-05-22[inets/httpc] Corrected appup fileMicael Karlberg
OTP-10092
2012-05-22[inets/httpc] Updated version, release nodes and appupMicael Karlberg
OTP-10092
2012-03-30Update copyright yearsBjörn-Egil Dahlberg
2012-03-15[inets] Updated appup fileMicael Karlberg
OTP-9983
2012-03-13[inets/httpc] Add function to retreive current optionsMicael Karlberg
Add function to retreive current options, httpc:get_options/1,2. OTP-9979
2012-03-06Merge branch 'jn/inets_sup_start_link' into bmk/inets/inets59_integration2Micael Karlberg
Also updated appup file accordingly.
2012-03-05Add inets_sup:start_link/0Jay Nelson
inets_app calls supervisor:start_link/3 directly rather than calling the root supervisor function inets_sup:start_link/0. This precludes using included_applications to start inets without having a wrapper function. This patch makes inets_app follow the standard OTP application structure.
2012-02-08[inets/httpd] Options parsing minor improvementMicael Karlberg
2012-02-07Merge branch 'bmk/inets/httpd/configurable_server_tokens/OTP-9805' into ↵Micael Karlberg
bmk/inets/inets59_integration Conflicts: lib/inets/src/inets_app/inets.appup.src
2012-02-06[inets] Proper appupMicael Karlberg
OTP-9805
2012-02-06Merge branch 'bmk/inets/httpc/checking_ipv6_on_windows' into ↵Micael Karlberg
bmk/inets/inets59_integration
2012-02-03[inets] Moved (dbg) trace utility functions to own module (inets_trace)Micael Karlberg