Commit graph

9859 commits

Author SHA1 Message Date
Kim Alvefur
15ba5f41b1 util.array: Add freeze metamethod 2018-10-12 00:51:52 +02:00
Kim Alvefur
1789a7adf8 util.serialization: Remove encoding of very large or very small numbers in scientific notation
Also difficult to describe this option, easier to remove it.

%.18g covers a very large range of numbers
2018-10-12 00:15:08 +02:00
Kim Alvefur
e0a16c75dc util.serialization: Simpler metatable pre-processing
It was too difficult to describe what it did.
2018-10-12 00:13:24 +02:00
Kim Alvefur
8d941e5d0f util.serialization: Use '=' prefix for chunk source description
Like in bd5e4485a245
2018-10-11 23:00:45 +02:00
Kim Alvefur
09c19925cc util.serialization: Make check of prefix for optional hex encoding stricter 2018-10-11 22:59:26 +02:00
Kim Alvefur
a796f87cc3 util.serialization: Test table keys that are Lua keywords 2018-10-11 22:50:45 +02:00
Kim Alvefur
69f91fa214 util.serialization: Test that it rejects tables wit cycles 2018-10-11 22:48:08 +02:00
Kim Alvefur
e99c680a14 util.serialization: Make errors fatal by default (like the previous implementation) 2018-10-11 22:42:17 +02:00
Matthew Wild
21e358c847 mod_storage_sql: Workaround MySQL not supporting LIMIT subquery in archive truncate operations, fixes #1200 2018-10-11 18:20:09 +01:00
Kim Alvefur
f26390b484 util.poll: Fix inverted logic 2018-10-11 18:56:11 +02:00
Kim Alvefur
fda067d696 net.server_epoll: Assert successful creation of util.poll handle 2018-10-11 18:53:15 +02:00
Kim Alvefur
9547e0e66d util.poll: Handle failed epoll FD creation 2018-10-11 18:52:12 +02:00
Kim Alvefur
22e0c16d4c util.poll: Early return from __gc in case of no valid epoll FD
This could happen if the epoll FD has already been closed or
the epoll_create call failed
2018-10-11 18:50:04 +02:00
Kim Alvefur
0304fc6ba2 net.server_epoll: Update copyright year 2018-10-11 17:01:45 +02:00
Kim Alvefur
8a62a14e5d net.server: Require IP address as argument to addclient (no DNS names)
The net.connect API should be used to resolve DNS names first
2018-10-11 15:48:30 +02:00
Matthew Wild
1c5c6c92c1 storagemanager tests: Remove debug print() 2018-10-11 14:18:38 +01:00
Matthew Wild
d422c3a4c0 storagemanager tests: Add many more archive tests, including (failing) cases for #1200 and #1073 2018-10-11 14:10:55 +01:00
Matthew Wild
2a92bf5c27 storagemanager tests: Add additional archive query tests 2018-10-11 13:29:14 +01:00
Matthew Wild
1f2e698290 .luacov: Add config for luacov, exclude spec/ 2018-10-11 10:39:11 +01:00
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