aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mod_version: Reduce scope of variableKim Alvefur2018-10-061-2/+1
| | | | It is only used in this if block anyways
* mod_version: Rename confusingly named variableKim Alvefur2018-10-061-8/+8
| | | | Maybe this meant the version of the OS, but it's still confusing.
* mod_version: Make 'origin' variable local for consistencyKim Alvefur2018-10-061-2/+2
| | | | | | Many event handlers start with local origin, stanza = event.origin, event.stanza;
* mod_version: Use text_tagKim Alvefur2018-10-061-3/+3
|
* net.server_epoll: Inherit Direct TLS flag from servers to their clientsKim Alvefur2018-09-141-1/+2
|
* net.server_epoll: Catch errors from luasec.wrapKim Alvefur2018-09-141-1/+5
| | | | It throws if given an invalid TLS context
* net.server_epoll: Delay wrapping sockets in TLS until just before first ↵Kim Alvefur2018-09-141-14/+21
| | | | handshake
* make coverage: Allow overriding path to bustedKim Alvefur2018-10-031-1/+1
|
* mod_server_contact_info: Comment on fallback to using 'admins'Kim Alvefur2018-10-011-0/+1
|
* configure: Suppress warning about '~' [SC2088]Matthew Wild2018-10-011-0/+1
|
* configure: Replace use of '-o' with '||' [SC2166]Matthew Wild2018-10-011-3/+3
|
* configure: Fix incorrect syntax of '&&' in previous commitMatthew Wild2018-10-011-10/+10
|
* configure: Replace usage of '-a' with '&&' [SC2166]Matthew Wild2018-10-011-10/+10
|
* make lint: Add shellcheck of configure scriptMatthew Wild2018-10-011-0/+1
|
* configure: Add shellcheck directives to suppress warnings on harmless linesMatthew Wild2018-10-011-1/+3
|
* configure: Replace logic constructs with explicit if/else statementsMatthew Wild2018-10-011-2/+10
|
* configure: Remove unnecessary 'echo'Matthew Wild2018-10-011-1/+1
|
* configure: Rename OSTYPE variable due to conflict with magic variable with ↵Matthew Wild2018-10-011-9/+8
| | | | same name on some shells/platforms
* configure: Replace backticks with $()Matthew Wild2018-10-011-7/+7
|
* configure: Remove unused functionMatthew Wild2018-10-011-19/+0
|
* make lint: Fix 'ignored files' countMatthew Wild2018-10-011-1/+1
|
* mod_websocket: Silence the one warning instead of ignoring the entire fileKim Alvefur2018-09-302-1/+2
|
* mod_s2s: Fix previous commitKim Alvefur2018-09-301-1/+1
|
* mod_s2s: Silence luacheck warnings in s2sout moduleKim Alvefur2018-09-301-1/+3
|
* mod_s2s: Silence all warnings instead of ignoring the entire moduleKim Alvefur2018-09-302-8/+13
|
* mod_admin_telnet: Guard against missing table fieldKim Alvefur2018-09-301-1/+1
|
* mod_admin_telnet: Create metatable only onceKim Alvefur2018-09-301-1/+2
|
* mod_admin_telnet: Remove unused histogram [luacheck]Kim Alvefur2018-09-301-2/+0
|
* mod_admin_telnet: Remove unused variable [luacheck]Kim Alvefur2018-09-301-1/+1
|
* mod_admin_telnet: Remove from luacheck ignore listKim Alvefur2018-09-301-1/+0
|
* mod_admin_telnet: Import net.server instead of relying on globalKim Alvefur2018-09-301-0/+1
|
* mod_admin_telnet: Use prosody.hosts to be more explicit and avoid name clash ↵Kim Alvefur2018-09-301-15/+14
| | | | with 'hosts' arguments [luacheck]
* mod_admin_telnet: Remove or rename various unused arguments and variables ↵Kim Alvefur2018-09-301-15/+15
| | | | [luacheck]
* mod_admin_telnet: Rename variable to avoid name clash [luacheck]Kim Alvefur2018-09-301-2/+2
|
* mod_admin_adhoc: Ignore the very long lines at the end [luacheck]Kim Alvefur2018-09-301-0/+1
|
* mod_admin_adhoc: Ignore shadowed 'err' variables [luacheck]Kim Alvefur2018-09-301-1/+1
|
* mod_admin_adhoc: Remove unused argument [luacheck]Kim Alvefur2018-09-301-1/+1
|
* mod_admin_adhoc: Remove unused loop variables [luacheck]Kim Alvefur2018-09-301-3/+3
|
* mod_admin_adhoc: Remove from global luacheck ignore listKim Alvefur2018-09-301-1/+0
|
* net.resolvers.service: Sort SRV records in correct directionKim Alvefur2018-09-301-1/+1
|
* net.resolvers.service: Fix sorting SRV recordKim Alvefur2018-09-301-1/+1
|
* net.resolvers.service: Rename internal variable since net.connect uses it ↵Kim Alvefur2018-09-291-4/+4
| | | | for __tostring
* net.resolvers.service: Add support for fallback to bare domain and default portKim Alvefur2018-09-291-0/+3
| | | | The default port must be configured separately to enable this behavior
* net.resolvers.service: Early return on empty result setKim Alvefur2018-09-291-0/+5
|
* net.resolvers.service: Understand when service is explicitly unavailableKim Alvefur2018-09-291-0/+5
| | | | | | RFC2782 states: > A Target of "." means that the service is decidedly not available at > this domain.
* mod_admin_telnet: Fix local reference to util.iteratorKim Alvefur2018-09-291-2/+2
|
* .luacheckrc: Allow randomize() global in spec/Matthew Wild2018-09-291-1/+2
| | | | | | This is a busted function that is not currently recognized by luacheck. See https://github.com/mpeterv/luacheck/pull/183
* Add storage tests (currently only internal and sqlite)Matthew Wild2018-09-291-0/+79
|
* net.resolvers.service: net.connect resolver that uses SRV recordsKim Alvefur2018-09-271-0/+57
|
* net.connect: Fix passing request table to new listenerKim Alvefur2018-09-264-7/+7
| | | | This could be a return value from ondetach