Commit graph

9469 commits

Author SHA1 Message Date
Matthew Wild
2a36be1e9e mod_storage_memory: Switch from '@' prefix to '=' for chunks, '@' is used to indicate a source file name only 2018-10-11 10:36:01 +01:00
Matthew Wild
6b841f66fd storagemanager tests: Add some additional checks 2018-10-10 22:03:11 +01:00
Matthew Wild
038921d7e0 storagemanager tests: Add initial basic tests for archive stores 2018-10-10 22:00:37 +01:00
Kim Alvefur
044da0478a mod_net_multiplex: Silence luacheck warnings 2018-10-10 21:56:47 +02:00
Kim Alvefur
9c1bbd8313 mod_net_multiplex: Remove exception from luacheck 2018-10-10 21:55:58 +02:00
Kim Alvefur
8d82efbca7 mod_http_files: Rename variable to avoid name clash [luacheck] 2018-10-10 21:54:12 +02:00
Kim Alvefur
35efbc8a8d mod_http_files: Silence luacheck warnings related to config variables 2018-10-10 21:53:26 +02:00
Kim Alvefur
681bf74342 mod_http_files: Remove exception from luacheck 2018-10-10 21:53:15 +02:00
Kim Alvefur
19f86b5428 mod_privacy: Remove exception from luacheck
Plugin has been removed and replaced by a tombstone, no point in
excluding it from linting
2018-10-10 21:48:38 +02:00
Kim Alvefur
c7ef245c0b mod_storage_sql: Remove unused function argument [luacheck]
What was the intent of this argument anyways?
2018-10-10 21:23:35 +02:00
Kim Alvefur
a19ac39844 mod_storage_sql: Remove exception from luacheck 2018-10-10 21:22:43 +02:00
Matthew Wild
bdc5ef569d util.promise tests: Fix luacheck warnings 2018-10-10 18:02:36 +01:00
Matthew Wild
e557cfb012 util.promise: ES6-like API for promises 2018-10-10 17:45:19 +01:00
Michel Le Bihan
09b659294a MUC: Check that a room password is set before verifying password supplied by user 2018-10-09 18:42:19 +02:00
Matthew Wild
e7d4ae6aac mod_admin_telnet: Allow viewing HTTP event listeners via debug:events('http') 2018-10-09 15:02:44 +01:00
Matthew Wild
fd3589a25e mod_register_ibr: Include password in user-registering event, to allow e.g. password policy enforcement 2018-10-09 15:01:34 +01:00
Matthew Wild
a9963c54c9 Fix storage tests so they run, but not by default 2018-10-01 20:21:26 +01:00
Matthew Wild
56e97dc5d6 util.pubsub tests: Ensure necessary tests run in the defined order 2018-10-01 19:43:20 +01:00
Kim Alvefur
28522988cc util.poll: Increase max epoll events per call
This makes the struct roughly the same size in both epoll and select
mode (64bit).

There doesn’t seem to be much guidance on an appropriate size, it does
not seem to matter too much since if there are more events they will
simply show up in the next epoll_wait call. The number of exactly
concurrent events should be fairly low most of the time anyways.
2018-10-08 15:33:15 +02:00
Kim Alvefur
ab950b3e79 mod_s2s: Indicate origin of s2s error 2018-10-08 15:03:26 +02:00
Kim Alvefur
4a73f5daef util.poll: Zero FD sets watched for errors on creation 2018-10-07 20:58:51 +02:00
Kim Alvefur
ceadb9c57c net.poll: Guard against negative or too large FDs 2018-10-07 18:44:46 +02:00
Kim Alvefur
31c8b1aca3 util.poll: Fix missing return for adding duplicate FD 2018-10-07 18:41:44 +02:00
Kim Alvefur
6b592b4bee net.server_epoll: Log error number from wait() 2018-10-07 17:40:13 +02:00
Kim Alvefur
07502b5698 MUC: Respond to ping per XEP-0410: MUC Self-Ping server optimization (closes #1220) 2018-10-07 03:48:13 +02:00
Kim Alvefur
18f98f7017 .luacheckrc: Ignore unused secondaries in non-strict mode
Previous commit was backwards
2018-10-06 18:56:22 +02:00
Kim Alvefur
e33c9e7a43 .luacheckrc: Do not ignore unused secondaries in strict mode 2018-10-06 18:52:52 +02:00
Kim Alvefur
9b2c4b2740 net.server_epoll: Pass error number to logging
Why do we ignore unused secondaries?
2018-10-06 18:50:30 +02:00
Kim Alvefur
8126707125 util.poll: Tweak metatable name field 2018-10-06 18:32:57 +02:00
Kim Alvefur
d92dfb7bc8 net.server_epoll: Fix luacheck annotation 2018-10-06 17:59:23 +02:00
Kim Alvefur
27ad8d000e net.server_epoll: Make :set_send a noop, should fix net.adns
This is also a noop in server_event. Supposedly meant to prevent
buffered writes from being sent to the socket, but that path becomes
unreachable when net.adns replaces the public send method
2018-10-06 17:50:41 +02:00
Kim Alvefur
d3c236c693 util.poll: Fix monitoring of socket exceptions in select mode
Since state->err is a set of all watched FDs, this mistake caused all
sockets to appear to have errors.
2018-10-06 17:19:50 +02:00
Kim Alvefur
1e4153ffc1 mod_version: Reduce scope of variable
It is only used in this if block anyways
2018-10-06 16:38:05 +02:00
Kim Alvefur
cf64256f73 mod_version: Rename confusingly named variable
Maybe this meant the version of the OS, but it's still confusing.
2018-10-06 16:32:37 +02:00
Kim Alvefur
fde87c2878 mod_version: Make 'origin' variable local for consistency
Many event handlers start with

    local origin, stanza = event.origin, event.stanza;
2018-10-06 16:29:42 +02:00
Kim Alvefur
b2b84b2f72 mod_version: Use text_tag 2018-10-06 16:27:31 +02:00
Kim Alvefur
b701156f2f net.server_epoll: Inherit Direct TLS flag from servers to their clients 2018-09-14 01:31:58 +02:00
Kim Alvefur
68d9b01091 net.server_epoll: Catch errors from luasec.wrap
It throws if given an invalid TLS context
2018-09-14 01:31:26 +02:00
Kim Alvefur
9291209e82 net.server_epoll: Delay wrapping sockets in TLS until just before first handshake 2018-09-14 01:34:38 +02:00
Kim Alvefur
7f201d94c1 make coverage: Allow overriding path to busted 2018-10-03 16:41:37 +02:00
Kim Alvefur
22b14f4200 mod_server_contact_info: Comment on fallback to using 'admins' 2018-10-01 23:46:10 +02:00
Matthew Wild
8caaa21a58 configure: Suppress warning about '~' [SC2088] 2018-10-01 16:23:57 +01:00
Matthew Wild
1fce045489 configure: Replace use of '-o' with '||' [SC2166] 2018-10-01 16:18:56 +01:00
Matthew Wild
8d68f9c4eb configure: Fix incorrect syntax of '&&' in previous commit 2018-10-01 16:13:28 +01:00
Matthew Wild
949ba9551d configure: Replace usage of '-a' with '&&' [SC2166] 2018-10-01 15:59:16 +01:00
Matthew Wild
90e3e7c116 make lint: Add shellcheck of configure script 2018-10-01 15:35:53 +01:00
Matthew Wild
32a0e9805a configure: Add shellcheck directives to suppress warnings on harmless lines 2018-10-01 15:33:10 +01:00
Matthew Wild
d736a358fe configure: Replace logic constructs with explicit if/else statements 2018-10-01 15:32:47 +01:00
Matthew Wild
4c51271865 configure: Remove unnecessary 'echo' 2018-10-01 15:31:14 +01:00
Matthew Wild
edba284071 configure: Rename OSTYPE variable due to conflict with magic variable with same name on some shells/platforms 2018-10-01 15:30:49 +01:00