net.http.parser: Add a limit on maximum buffer size, default to 20M
|
Kim Alvefur |
2016-08-18 |
net.http.parser: Add a limit on content length, default to 10M
|
Kim Alvefur |
2016-08-18 |
net.http.parser: Buffer into a table to reduce GC pressure, collapse to string when needed (fixes #603)
|
Kim Alvefur |
2016-08-13 |
net.server_epoll: Fix missing quotes in logging call
|
Kim Alvefur |
2016-08-18 |
net.server_epoll: Add some comments
|
Kim Alvefur |
2016-08-17 |
net.http.codes: Add HTTP status code 451 Unavailable For Legal Reasons from RFC 7725
|
Kim Alvefur |
2016-08-13 |
net.http.codes: Remove used argument
|
Kim Alvefur |
2016-08-13 |
mod_register: Fix inverted throttle check (fixes #724)
|
Kim Alvefur |
2016-08-13 |
net.http.parser: Remove unused argument [luacheck]
|
Kim Alvefur |
2016-08-13 |
ejabberdsql2prosody: rename variable 't' to prevent shadowing upvalues [luacheck]
|
Anton Shestakov |
2016-08-12 |
ejabberdsql2prosody: rename variable 'host' to prevent shadowing upvalue [luacheck]
|
Anton Shestakov |
2016-08-12 |
ejabberdsql2prosody: remove unused one-letter loop variables [luacheck]
|
Anton Shestakov |
2016-08-12 |
ejabberdsql2prosody: remove unused function pushback() [luacheck]
|
Anton Shestakov |
2016-08-12 |
net.server_epoll: Clear write flag before calling ondrain, fixes calling of ondisconnect on explicit close
|
Kim Alvefur |
2016-08-16 |
net.server_epoll: Wrap calling of ondisconnect listener in additional indirection
|
Kim Alvefur |
2016-08-13 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-08-11 |
mod_s2s: Set read mode for s2sout sockets to the same as s2sins
|
Kim Alvefur |
2016-08-11 |
net.server_epoll: Continue reading after a slight delay if there is buffered data after a read
|
Kim Alvefur |
2016-08-11 |
net.server_epoll: Replace any previous pausefor timer
|
Kim Alvefur |
2016-08-11 |
net.server_epoll: Fix calculation of next timer event
|
Kim Alvefur |
2016-08-11 |
net.server_epoll: Don't mistake success for an error
|
Kim Alvefur |
2016-08-11 |
net.server_epoll: Make addclient conform to API (expected by net.http.request)
|
Kim Alvefur |
2016-08-10 |
net.server_epoll: Some logging when closing a connection
|
Kim Alvefur |
2016-08-10 |
net.server_epoll: Use first writable event to signal onconnect
|
Kim Alvefur |
2016-08-10 |
net.server_epoll: Make addclient use wrapclient
|
Kim Alvefur |
2016-08-10 |
net.server_epoll: Log epoll_ctl() calls and return values
|
Kim Alvefur |
2016-08-10 |
net.server_epoll: Rename arguments and varibles for consistensy
|
Kim Alvefur |
2016-08-10 |
net.server_epoll: Remove last traces of code for bypassing buffering on writable sockets
|
Kim Alvefur |
2016-08-10 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-08-10 |
configure: Remove C++ compiler variable, not used
|
Kim Alvefur |
2016-08-10 |
net.server_epoll: New experimental server backend
|
Kim Alvefur |
2016-08-10 |
net.server: Monkey-patch in a fallback get_backend method if missing
|
Kim Alvefur |
2016-08-10 |
net.server: Allow arbitrary network backends to be configured
|
Kim Alvefur |
2016-08-10 |
net.server: Only update configuration if server backend supports changing settings
|
Kim Alvefur |
2016-08-10 |
net.server: Fix whitespace
|
Kim Alvefur |
2016-08-10 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-08-08 |
net.http.server: Set blocksize for serving data from FDs to 64k (sweet spot of efficiency according to a recent study)
|
Kim Alvefur |
2016-08-08 |
mod_c2s: Don't try to keep alive sessions where the stream is not (yet) open
|
Kim Alvefur |
2016-08-07 |
mod_c2s: Fix whitespace (why does it keep getting messed up?)
|
Kim Alvefur |
2016-08-07 |
util.table: Move loop variable to top of function for C89 compatibility
|
Kim Alvefur |
2016-08-07 |
mod_s2s: Index session after checking if it exists (fixes traceback in case of a connection without a session having a read timeout)
|
Kim Alvefur |
2016-08-07 |
MUC: Pass room JID instead of room itself to logger, fixes traceback (thanks damencho)
|
Kim Alvefur |
2016-08-06 |
doc/session: As far as I remember, sessions have had a close method, not disconnect
|
Kim Alvefur |
2016-08-03 |
Merge 0.10 -> trunk
|
Matthew Wild |
2016-07-29 |
statsmanager: Refactor to simplify logic. Notably renames 'statistics_provider' to 'statistics', and external libs now just begin with ':'
|
Matthew Wild |
2016-07-29 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-07-29 |
certmanager: Assume default config path of '.' (fixes prosodyctl check certs when not installed)
|
Kim Alvefur |
2016-07-29 |
Merge 0.10 -> trunk
|
Matthew Wild |
2016-07-28 |
util.openssl: rename variable to not collide with other 'k's [luacheck]
|
Anton Shestakov |
2016-07-28 |
prosodyctl: remove unused variables [luacheck]
|
Anton Shestakov |
2016-07-28 |
net.dns: remove unused variable unpack [luacheck]
|
Anton Shestakov |
2016-07-28 |
net.server_select: remove unused import [luacheck]
|
Anton Shestakov |
2016-07-28 |
Merge 0.10->trunk
|
Matthew Wild |
2016-07-27 |
statsmanager: If provider doesn't offer a get_stats method, still fire the stats-update event if stats_interval is specified (however stats-updated will not fire)
|
Matthew Wild |
2016-07-27 |
Merge 0.10 -> trunk
|
Matthew Wild |
2016-07-27 |
statsmanager, util.statsd: Add built-in statsd provider
|
Matthew Wild |
2016-07-27 |
statsmanager: Add 'stats_provider' option, to allow selecting alternative API providers to util.statistics
|
Matthew Wild |
2016-07-27 |
net.http: Add quotes around ids in log messages
|
Matthew Wild |
2016-07-27 |
util.table: Add pack() function (this is already available in Lua 5.2+)
|
Matthew Wild |
2016-07-27 |
mod_http: Fix indentation in redir_handler
|
Emmanuel Gil Peyrot |
2016-07-24 |
Default configuration: Remove trailing whitespaces
|
Emmanuel Gil Peyrot |
2016-07-24 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-07-23 |
test_utf8: remove 2 unused variables and an undefined variable [luacheck]
|
Anton Shestakov |
2016-07-23 |
test_util_http: wrap individual test blocks in do-end [luacheck]
|
Anton Shestakov |
2016-07-23 |
util.sql: remove unused one-letter loop variables [luacheck]
|
Anton Shestakov |
2016-07-23 |
test_util_uuid: remove unused one-letter loop variable [luacheck]
|
Anton Shestakov |
2016-07-23 |
test_util_multitable: remove unused one-letter loop variable [luacheck]
|
Anton Shestakov |
2016-07-23 |
Merge 0.10->trunk
|
Matthew Wild |
2016-07-21 |
test_util_queue: finish stress-test by emptying the queue
|
Anton Shestakov |
2016-07-20 |
test_util_queue: Reduce iteration count of loop and add asserts
|
Kim Alvefur |
2016-07-20 |
tests: Adapt test for util.queue to the test framework
|
Kim Alvefur |
2016-07-20 |
mod_bosh: Fix merge mistakes from c8923f882274
|
Kim Alvefur |
2016-07-14 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-07-14 |
test_util_cache: wrap individual test blocks in do-end [luacheck]
|
Anton Shestakov |
2016-07-14 |
test_util_stanza: wrap individual test blocks in do-end [luacheck]
|
Anton Shestakov |
2016-07-14 |
mod_net_multiplex: remove unused one-letter loop variable [luacheck]
|
Anton Shestakov |
2016-07-14 |
net.server_select: remove unused one-letter loop variable [luacheck]
|
Anton Shestakov |
2016-07-14 |
net.dns: remove unused one-letter loop variables [luacheck]
|
Anton Shestakov |
2016-07-14 |
fallbacks.bit: remove unused one-letter loop variables [luacheck]
|
Anton Shestakov |
2016-07-14 |
run_tests: use "$@" for passing arguments [shellcheck]
|
Anton Shestakov |
2016-07-14 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-07-13 |
Merge 0.9->0.10
|
Kim Alvefur |
2016-07-13 |
sessionmanager: Make session.send() return true unless there really is an error [backported from 0.10]
|
Kim Alvefur |
2015-09-21 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-07-13 |
tests: Add basic test for net.http.parser
|
Kim Alvefur |
2016-07-12 |
mod_http_errors: Add a newline after end of HTML
|
Kim Alvefur |
2016-07-12 |
mod_http_files: Send larger files using new file handle API
|
Kim Alvefur |
2016-07-11 |
mod_http_files: Switch to use util.cache for cache
|
Kim Alvefur |
2016-07-11 |
net.http.server: Add response method for reading response body from a file handle
|
Kim Alvefur |
2016-07-11 |
MUC: Hide new MUC room storage format behind an off-by-default option
|
Kim Alvefur |
2016-07-09 |
mod_http_files: send valid ETag header
|
Anton Shestakov |
2016-07-09 |
util.ip: rename variable (i is already defined) [luacheck]
|
Anton Shestakov |
2016-07-09 |
test_util_cache: rename a variable (c is already defined) [luacheck]
|
Anton Shestakov |
2016-07-09 |
test_util_cache: remove unused argument c3 [luacheck]
|
Anton Shestakov |
2016-07-09 |
prosodyctl: remove unused one-letter loop variable [luacheck]
|
Anton Shestakov |
2016-07-09 |
util.openssl: remove unused one-letter loop variable [luacheck]
|
Anton Shestakov |
2016-07-09 |
util.ip: remove unused one-letter loop variables [luacheck]
|
Anton Shestakov |
2016-07-09 |
net.dns: don't use "for s,s in pairs..." (unused loop variable s) [luacheck]
|
Anton Shestakov |
2016-07-09 |
luacheckrc: make module a global in plugins/
|
Anton Shestakov |
2016-07-09 |
luacheckrc: make test helpers read-only globals, add testlib_new_env and runtest
|
Anton Shestakov |
2016-07-09 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-07-08 |
luacheckrc: Ignore assert helper functions used in tests/*
|
Kim Alvefur |
2016-07-08 |
net.adns: remove unused local variables t_insert and t_remove [luacheck]
|
Anton Shestakov |
2016-07-08 |
mod_admin_telnet: remove unused import (util.serialization) [luacheck]
|
Anton Shestakov |
2016-07-08 |
test_util_jid: make function test() local [luacheck]
|
Anton Shestakov |
2016-07-08 |
test_util_multitable: make mt variable local [luacheck]
|
Anton Shestakov |
2016-07-08 |
mod_admin_telnet: rename variable to make it defined (room -> room_name)
|
Anton Shestakov |
2016-07-08 |
mod_presence: remove unused one-letter loop variable [luacheck]
|
Anton Shestakov |
2016-07-08 |
net.dns: remove unused one-letter loop variables [luacheck]
|
Anton Shestakov |
2016-07-08 |
net.server_select: remove unused one-letter loop variables [luacheck]
|
Anton Shestakov |
2016-07-08 |
Merge 0.10->trunk
|
Kim Alvefur |
2016-07-08 |
mod_c2s, mod_s2s: Bootstrap connection count statistic on module load
|
Kim Alvefur |
2016-07-07 |
Merge 0.10->trunk
|
Matthew Wild |
2016-07-07 |
net.http: Add log messages for requests, including their id (so "calling callback" and tracebacks can be traced back to their initial request)
|
Matthew Wild |
2016-07-07 |
net.http: Add request.id to every request object (can be overridden by providing ex.id)
|
Matthew Wild |
2016-07-07 |
Merge 0.10->trunk
|
Matthew Wild |
2016-06-28 |
util.time: New tiny library to abstract LuaSocket's gettime() function, so we can use other sources in the future
|
Matthew Wild |
2016-06-28 |
Merge 0.9->0.10
|
Kim Alvefur |
2016-06-24 |
mod_privacy: Fix selecting the top resource (fixes #694)
|
Kim Alvefur |
2016-06-22 |
util.openssl: Handle return value from os.execute being true in Lua 5.2
|
Kim Alvefur |
2016-06-23 |