Commit graph

9946 commits

Author SHA1 Message Date
Kim Alvefur
085e172897 README: Add link to current issue tracker 2019-04-03 01:03:23 +02:00
Kim Alvefur
10705cd053 README: Remove mailing list where issue tracker changes went in the Google Code days 2019-04-03 01:02:36 +02:00
Kim Alvefur
e632119ffa mod_limits: Fix typo 2019-04-02 21:22:20 +02:00
Kim Alvefur
1b534392de mod_limits: Allow configuring a list of unrestricted JIDs (fixes #1323) 2019-04-02 20:38:51 +02:00
Kim Alvefur
a6571e3ef3 mod_limits: Fix indentation
Appears to have been messed up in 60e113f3682f
2019-04-02 21:17:28 +02:00
Kim Alvefur
ce1056dc43 .luacheckrc: Correct indentation of 'exclude_files' list 2019-04-01 21:15:47 +02:00
marc0s
643032e8b3 doc/coding_style: apply consistent semi-colon usage
Make all "good" statements in the coding style document use consistent
statement-separator semi-colon
2019-03-30 18:44:34 +01:00
Kim Alvefur
e7fce52802 core.s2smanager: Fix previous commit (Thanks Martin) 2019-03-30 09:04:33 +01:00
Kim Alvefur
ae1009d110 core.sessionmanager: Use util.session to create sessions 2019-03-29 23:05:08 +01:00
Kim Alvefur
1ec8b45104 core.s2smanager: Use util.session to create sessions 2019-03-29 22:40:53 +01:00
Kim Alvefur
281c3a42c8 core.s2smanager: Spread out session tables over multiple lines
Improves readability
2019-03-29 22:37:12 +01:00
Kim Alvefur
cb800a7c5d core.s2smanager: Rename variable to be same in two functions 2019-03-29 22:45:54 +01:00
Kim Alvefur
e1d1f3d4f7 Merge 0.11->trunk 2019-03-28 17:28:20 +01:00
Kim Alvefur
c422e8f134 net.server_epoll: Skip delayed continuation read on paused connections
This should prevent #1333 in cases where LuaSockets buffer is "dirty",
i.e. contains more data after a read, where it gets resumed with a
short delay.
2019-03-28 12:52:55 +01:00
Kim Alvefur
e34e8e845d net.server_epoll: Handle LuaSec wantread/wantwrite conditions before callbacks (fixes #1333)
This prevents the :set(true) call from resuming a connection that was
paused in the onincoming callback.
2019-03-28 12:31:14 +01:00
Matthew Wild
36ad587977 moduleapi: Log suppressed status priority and message when not overriding 2019-03-26 17:22:56 +00:00
Matthew Wild
3616d69edb moduleapi: Remove overly-verbose debug logging on module status change 2019-03-26 17:22:25 +00:00
Matthew Wild
28322869e8 mod_posix: Remove unnecessary import of util.format (thanks luacheck and buildbot) 2019-03-26 14:59:42 +00:00
Matthew Wild
2ab785fd9f loggingmanager, mod_posix: Move syslog to core, fixes #541 (in a way) 2019-03-26 14:48:21 +00:00
Matthew Wild
e5d74b77ae util.queue: Update :items() to consistently use private data directly
It will perform better this way, and we were accessing private variables already within the iterator.

Replaces 3eea63a68e0f
2019-03-26 13:54:14 +00:00
Matthew Wild
de72422137 Backed out changeset 3eea63a68e0f
Commit included intended changes to loggingmanager
2019-03-26 13:51:06 +00:00
Matthew Wild
e1b559853f util.stanza: Fix :top_tag() handling of namespaced attributes 2019-03-25 14:37:43 +00:00
Kim Alvefur
096ebc3bcf mod_csi_simple: Include queue size in debug messages 2019-03-25 15:20:28 +01:00
Matthew Wild
5074566d79 mod_csi_simple: Fix type in function name 2019-03-25 10:32:39 +00:00
Kim Alvefur
ba9e505924 mod_csi_simple: Improve debug logs by mentioing why the buffer gets flushed 2019-03-24 22:01:36 +01:00
Kim Alvefur
684a26f5be mod_csi_simple: Add some debug logging 2019-03-24 20:53:49 +01:00
Kim Alvefur
e887ed5cad mod_csi_simple: Disable optimizations on unload and re-enable on load 2019-03-24 20:43:15 +01:00
Kim Alvefur
1e77bb6ed2 mod_csi_simple: Separate out functions to enable/disable optimizations
This allows reusing this logic outside the events. Letting the functions
be module globals makes it easier to access from eg the telnet console.
2019-03-24 20:41:25 +01:00
Kim Alvefur
6c89a86e0d mod_csi_simple: Remove old "pump" queue/buffer method, handled in net.server now 2019-03-24 20:22:01 +01:00
Kim Alvefur
e8f72c6d4f net.server_select: Fix write pause/resume functions
Nothing would happen if the write buffer was empty.

Also simplified the code because it took too long to understand what
`if _sendlistlen ~= tmp then` did.
2019-03-24 20:12:22 +01:00
Kim Alvefur
20eaa5d17b net.server_event: Allow writing into buffer of write-locked connections
Check for 'nointerface' flag instead, whatever that means.
2019-03-24 19:07:39 +01:00
Kim Alvefur
3a1498ebd3 mod_csi_simple: Also flush buffer in "pump" mode 2019-03-24 19:02:40 +01:00
Kim Alvefur
141c5d3fbe mod_csi_simple: Trigger buffer flush on seeing incoming data
I.e. the client sent us something, which means its network / radio is
active.
2019-03-24 18:58:53 +01:00
Kim Alvefur
643c317b16 mod_csi_simple: Count buffered items and flush when it reaches configured limit
In this mode, stanzas have been serialized to strings in the internal
net.server buffer, so it is difficult to count them after the fact.
2019-03-24 18:33:38 +01:00
Kim Alvefur
e5885c928a mod_csi_simple: Break out stanza timestamping into a function for future reuse 2019-03-24 18:32:50 +01:00
Kim Alvefur
9e7035be72 mod_c2s: Fire an event when outgoing buffers have been emptied 2019-03-24 18:30:51 +01:00
Kim Alvefur
b6cff0ba5e mod_storage_memory: Implement :user iteration API 2019-01-14 00:17:02 +01:00
Kim Alvefur
4c0bdc6b5c mod_muc_mam: Copy cleanup mechanism from mod_mam (fixes #672) 2019-03-22 17:40:07 +01:00
Kim Alvefur
5c3633477b mod_mam: Perform message expiry based on building an index by date (backport of 39ee70fbb009 from trunk)
For each day, store a set of users that have new messages. To expire
messages, we collect the union of sets of users from dates that fall
outside the cleanup range.

The previous algoritm did not work well with many users, especially with
the default settings.
2019-03-22 17:32:56 +01:00
Matthew Wild
fffb4ee43d prosodyctl about: Report network backend in use 2019-03-14 08:09:49 +00:00
Kim Alvefur
09a662026a mod_muc_mam: Add comment about the tricks done with the 'with' field 2019-03-04 12:58:20 +01:00
Kim Alvefur
2c8eecf7c2 mod_muc_mam: Move a comment to the line it describes 2019-03-04 12:57:42 +01:00
Kim Alvefur
dad8bb5fee mod_muc_mam: Strip the stanza 'to' attribute (fixes #1259) 2019-03-04 12:56:31 +01:00
Kim Alvefur
5d4504e51b util.pubsub: Validate node configuration on node creation (fixes #1328) 2019-03-03 19:31:56 +01:00
Kim Alvefur
7241f86668 mod_storage_memory: Generate ID using standard util (fixes #1326)
The previous method relied on tostring(table) returning the pointer address,
which might not be portable.
2019-03-02 22:26:01 +01:00
Kim Alvefur
3b8e8f6a45 spec: Add test case for #1322 2019-02-27 10:27:17 +01:00
Kim Alvefur
07541082dc mod_storage_memory: Replace query function with one based on storage_internal (fixes #1322)
The :find method in storage_internal works and is easier to read and
understand. Future changes should be simpler to apply to both modules.
2019-02-27 10:20:38 +01:00
Kim Alvefur
4673e4897b mod_pubsub: Simplify configuration for node data (see #1302) 2019-02-22 07:33:23 +01:00
Kim Alvefur
e289d31177 mod_pep: Simplify configuration for node data (fixes #1320) 2019-02-22 07:35:44 +01:00
Kim Alvefur
66d2e6adc3 net.server_epoll: Rename handshake_timeout to ssl_handshake_timeout (fixes #1319)
This is to match server_event, see 430797a8fc81
2019-02-09 19:28:24 +01:00