aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src
AgeCommit message (Collapse)Author
2014-02-05ftp: fix sockname dialyzer warning including ftp:sockname/1 bugHans Nilsson
2014-02-05ftp: small fixesHans Nilsson
2014-02-05ftp: Add timeouts to ssl:connectHans Nilsson
2014-02-05ftps: workingHans Nilsson
2014-02-05.Hans Nilsson
2014-02-05added some printoutsHans Nilsson
2014-02-05ftp: towards a working ftps, chapter 1Hans Nilsson
2014-02-05ftp: Implement ftps (upgrade to TLS)Ingela Anderton Andin
2014-02-05[inets/httpd] Improved request handler terminate error-log entryMicael 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 entryMicael Karlberg
Sometimes the size of a response could be as a string.
2014-02-05[inets/httpd] Logging cleanupMicael 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" responseMicael Karlberg
2014-02-05inets: httpc - Remove dead error handling codeIngela 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-05inets: httpc make httpc_cancel_request/[1,2] asynchronousIngela Anderton Andin
Conflicts: lib/inets/src/http_client/httpc_handler.erl
2014-02-05Remove http_chunk:decode/4 as it is no longer usedMasatake 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-05Fix {stream, {self, once}} in httpcMasatake 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-05httpc: Allow content body in DELETE requestsJames Wheare
2014-02-05httpc: Enhanched error handlingIngela Anderton Andin
2014-02-05inets: httpc improve pipeliningIngela Anderton Andin
2014-02-05Fix 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-05inets: stop block timer with the right argumentsFredrik Gustafsson
2014-02-05inets httpc: Revert incorrect commit regarding cookie handling.Ingela Anderton Andin
2014-02-05Added guard for invalid field and values in headersFredrik Gustafsson
2014-02-05Handle correctly the "No files found or file unavailable" error code.serge
2014-02-05Removed case clause for length = 0 for both HTTP1.0 and HTTP1.1Fredrik Gustafsson
2014-02-05inets httpd: Handle ipfamily option correctly when listning to port 0Ingela Anderton Andin
Conflicts: lib/inets/src/http_lib/http_transport.erl
2014-02-05inets: Improve ssl handlingIngela Anderton Andin
httpc: CTfy test suite httpd: Simplify ssl configuration OTP-10846
2014-02-05inets httpd: The option modules now defaults to its documented default value.Ingela Anderton Andin
OTP-10844
2014-02-05inets httpc: Corrected separation of pipelining and persisten connectionsIngela Anderton Andin
OTP-10845
2014-02-05inets: fix autoredirect for POST requests responding 303Hans Svensson
Changed httpc_response, for redirect '303 See Other' also POST requests should be redirected (using GET). See RFC2616 sect. 10.3.4 for clarification.
2014-02-05inets: Dialyzer fixesIngela Anderton Andin
2014-02-05inets httpc: TLS via proxyIngela Anderton Andin
Introduces new option htts_proxy so that it is possible to have different proxies for http and https. The new option defaults to the old proxy option. Implements HTTP-1.1 extension method CONNECT to establish SSL/TLS tunnel We choose not to implement "TLS upgrade" as defined by RFC 2817 as this method of upgrade is vulnerable to man in the middle attacks, can be easily broken by proxies and does not seem to be widely adopted.
2014-02-05inets: Corrected appupIngela Anderton Andin
2013-08-21[inets, ssl]: make log_alert configurable as option in ssl, SSLLogLevel ↵Fredrik Gustafsson
added as option to inets conf file
2013-06-28inets: version updatesFredrik Gustafsson
2013-06-27inets: removed obsolete codeFredrik Gustafsson
2012-11-23Update copyright yearsBjörn-Egil Dahlberg
2012-11-14Fine adjustments of slowdos algFredrik Gustafsson
2012-11-09Bumped version nrFredrik Gustafsson
2012-11-09Reduced checking of bytes per second to every secondFredrik Gustafsson
2012-11-06Changed property to minimum_bytes_per_second and checking if is integer on startFredrik Gustafsson
2012-11-06Changed to Bytes Per Second when checking clients rate, new options ↵Fredrik Gustafsson
{byte_limit, integer()}
2012-11-06Option {bit_limit, integer()} to close sockets where clients are too slowFredrik Gustafsson
2012-08-31Update copyright yearsBjörn-Egil Dahlberg
2012-08-30Merge branch 'ia/inets-dialyzer' into maintIngela Anderton Andin
* ia/inets-dialyzer: inets: Dialyzer spec fixes
2012-08-29inets: Dialyzer spec fixesIngela Anderton Andin
2012-08-29Merge branch 'ta/docsmaint' into maintHenrik Nord
* ta/docsmaint: Fix various doc typos for R15B02 Fix various code typos for R15B02 OTP-10245
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