Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | plugins: Use integer config API with interval specification where sensible | Kim Alvefur | 2023-07-17 | 1 | -2/+2 |
| | | | | | | | Many of these fall into a few categories: - util.cache size, must be >= 1 - byte or item counts that logically can't be negative - port numbers that should be in 1..0xffff | ||||
* | plugins: Prefix module imports with prosody namespace | Kim Alvefur | 2023-03-24 | 1 | -2/+2 |
| | |||||
* | mod_net_multiplex: Set read size/mode to that of the target listener | Kim Alvefur | 2020-08-02 | 1 | -0/+3 |
| | | | | | Otherwise it would use the configured buffer size, or previously '*a'. Using the read size set by the listener seems more sensible. | ||||
* | mod_net_multiplex: Read no more than the max buffer size setting | Kim Alvefur | 2020-08-02 | 1 | -1/+1 |
| | | | | | Otherwise the '*a' read mode applies, which under certain circumstances can read infinite amounts of data into memory. | ||||
* | mod_net_multiplex: Remove debug message | Kim Alvefur | 2019-12-01 | 1 | -1/+0 |
| | | | | | This was something I added during development and set to info level for visibility. | ||||
* | mod_net_multiplex: Tweak debug logging for ALPN case | Kim Alvefur | 2019-11-29 | 1 | -2/+1 |
| | |||||
* | mod_net_multiplex: Add support for using ALPN | Kim Alvefur | 2019-11-29 | 1 | -3/+37 |
| | | | | | | | Potentially a bit more efficient since it can jump to the selected protocol on connect instead of waiting for some data to look at. Adds a 'protocol' field to net providers for this purpose. | ||||
* | mod_net_multiplex: Silence luacheck warnings | Kim Alvefur | 2018-10-10 | 1 | -6/+6 |
| | |||||
* | Merge 0.9->0.10 | Kim Alvefur | 2017-01-04 | 1 | -0/+1 |
|\ | |||||
| * | mod_net_multiplex: Enable SSL on the SSL port (fixes #803) | Kim Alvefur | 2016-12-21 | 1 | -0/+1 |
| | | |||||
* | | mod_net_multiplex: remove unused one-letter loop variable [luacheck] | Anton Shestakov | 2016-07-14 | 1 | -1/+1 |
|/ | |||||
* | net.http, net.http.server, mod_c2s, mod_s2s, mod_component, ↵ | Matthew Wild | 2014-08-29 | 1 | -1/+2 |
| | | | | mod_admin_telnet, mod_net_multiplex: Add ondetach to release connection from 'sessions' table (or equivalent) | ||||
* | mod_{admin_telnet,c2s,component,http,net_multiplex,s2s}: Use ↵ | Waqas Hussain | 2012-09-12 | 1 | -1/+1 |
| | | | | module:provides() instead of module:add_item(). | ||||
* | mod_net_multiplex: Port multiplexing (run multiple different services on a ↵ | Matthew Wild | 2012-03-15 | 1 | -0/+70 |
the same port(s))... now pluggable for use with any net plugin |