Kim Alvefur
dcab373f45
mod_csi_simple: Set session state to 'flushing' while doing so
...
May be useful for 3rd party modules.
2021-02-16 23:09:51 +01:00
Kim Alvefur
cb1282bfd0
mod_csi_simple,mod_carbons,mod_mam: Update comment about XEP-0353
...
It went back to Deferred
2021-01-08 17:32:06 +01:00
Kim Alvefur
e856c00107
mod_csi_simple: Report whatever's not a stirng and not a stanza
...
This is either dead code or actually a type error, but catching that
should be the responsibility of the session.send function. This type
check is left since everything after it assumes a stanza object.
These last few commits aren't meant to change any behavior and it did
mark things not stanzas as important, but those would have been mostly
raw strings which are now specially handled.
2020-05-10 23:12:33 +02:00
Kim Alvefur
c34f2c9ebf
mod_csi_simple: Report whitespace keepalives
...
Single space character is sent by mod_c2s when a session has been
silent for some time. This should account for the vast majority of raw
strings passing through here. If this is not the case then having stats
to say otherwise will be interesting.
2020-05-10 23:09:15 +02:00
Kim Alvefur
9b7ab06ef3
mod_csi_simple: Identify raw string data in logging and stats
2020-05-10 23:06:21 +02:00
Kim Alvefur
d4c1384269
mod_csi_simple: Collect stats on flush reasons
2020-05-09 17:47:03 +02:00
Kim Alvefur
edd5966062
mod_csi_simple: Record stats of how long buffers are held
...
Telnet command `stats:show("buffer_hold"):histogram()` looks nice!
2020-05-09 17:45:45 +02:00
Kim Alvefur
4053cca7dc
mod_csi_simple: Change debug message of client-triggered flush for coherence
...
It now matches other the other source of flush reason logging.
2020-05-09 17:38:13 +02:00
Kim Alvefur
e1a3982654
mod_csi_simple: Reset queue counter to zero when enabling
...
For symmetry.
2020-05-09 17:07:43 +02:00
Kim Alvefur
859c3650e5
mod_csi_simple: Forget queue counter when disabling optimizations
...
Otherwise it might not start from zero when enabled again.
2020-05-09 17:05:46 +02:00
Kim Alvefur
cabd89913a
mod_csi_simple: Fix flushing when client sent something
...
Forgot to unset the flag afterwards, so it would only work once.
The flag is not even needed, it works as intended without it.
2020-05-09 13:50:58 +02:00
Kim Alvefur
749ed917c1
mod_csi_simple: Fix treating presence errors as presence updates
...
Autocomplete fail probably.
2020-05-09 13:33:26 +02:00
Kim Alvefur
ade3caf1ad
mod_csi_simple: Add comment highlighting that XEP-0353 is experimental
...
To make it easier to find implemented Experimental XEPs later. Also at
the time of this commit it has been Proposed as mentinoed in the
comment but hopefully that will be resolved soon.
2020-05-09 01:01:03 +02:00
Kim Alvefur
fc8a50cd73
mod_csi_simple: Fix unintentional order of rules from merge
2020-05-09 01:01:01 +02:00
Kim Alvefur
5b3710099c
Merge 0.11->trunk
2020-05-09 00:48:22 +02:00
Kim Alvefur
b8779399f6
mod_csi_simple: Consider XEP-0353: Jingle Message Initiation important
...
Improves experience with VoIP calls initiated via JMI
Closes #1548
2020-05-08 23:47:48 +02:00
Kim Alvefur
b2baba1124
mod_csi_simple: Log reasons for not flushing
2020-05-07 23:02:47 +02:00
Kim Alvefur
a9ba50343c
mod_csi_simple: Add short reasons to report
...
Should improve quality of debug logs
2020-05-07 22:56:30 +02:00
Kim Alvefur
44847d620c
mod_csi_simple: Refactor to allow logging reason for buffer flush
...
Same style as mod_mam and mod_carbons allows easy comparison.
BC: Log format changes
2020-05-07 21:55:29 +02:00
Kim Alvefur
9339ebb8e3
mod_csi_simple: Don't consider presence errors as important
...
A large share of `<presence type=error>` appears to be noise from large
public channels and failed presence probes. The later at least should
count as presence updates, which are currently considered unimportant.
See also 8cecb85e4bc4 which is partly reverted here. The intent there
was probably mostly about message (delivery) errors, which should be
considered important.
2020-05-05 23:08:47 +02:00
Kim Alvefur
0085d410b2
mod_csi_simple: Explicitly mention iq stanzas
...
Should be more obvious that all iq stanzas are considered important.
Changes behavior for invalid things in the default namespace.
2020-04-26 11:40:48 +02:00
Kim Alvefur
37a42fa605
mod_csi_simple: Clarify what might not be stanzas here
2020-04-26 11:13:25 +02:00
Kim Alvefur
ea91b4cc7b
mod_csi_simple: Consider nonzas important
...
This case was previously handled by fall-trough at the end of the
function.
2020-04-26 11:13:01 +02:00
Kim Alvefur
fc3bee71fd
mod_csi_simple: Explicitly consider errors important
...
This was already the case for presence and iq stanzas but not messages.
2020-04-26 10:58:22 +02:00
Kim Alvefur
8f77033238
mod_csi_simple: Consider MUC invites important
...
Both mediated invites defined by XEP-0045: Multi-User Chat and direct
invites defined by XEP-0249: Direct MUC Invitations
2020-04-18 19:36:26 +02:00
Kim Alvefur
4b33a7aac8
mod_csi_simple: Allow configuring extra tags indicating importance
2020-04-18 16:18:41 +02:00
Kim Alvefur
2a7715e94b
mod_csi_simple: Make sure to disable optimizations before mod_smacks (thanks pep.)
2019-11-17 17:59:56 +01:00
Kim Alvefur
2e1a43906f
mod_csi_simple: Always remove session filters when disabling CSI
...
Only guard the actual pausing of outgoing data on the method existing.
This prevents the filters from lingering in case something happened to
the connection. Removing already removed filters should be a safe noop.
2019-10-05 16:55:58 +02:00
Kim Alvefur
1356b90c3a
mod_csi_simple: Try not to flush buffer while already flushing it
...
Reduces log noice
2019-10-05 16:50:41 +02:00
Kim Alvefur
fad52c7686
mod_csi_simple: Remove duplicated check for connection
2019-09-28 22:59:29 +02:00
Kim Alvefur
24c44a4566
mod_csi_simple: Consider messages encrypted payload as important (fixes part of #1250 )
2019-01-06 21:09:32 +01:00
Kim Alvefur
e03098631f
mod_csi_simple: Consider messages with subject (eg MUC joins) (fixes part of #1250 )
2019-01-06 21:09:00 +01:00
Kim Alvefur
05b481ec89
mod_csi_simple: Unpack Carbons-forwarded messages (fixes part of #1250 )
2019-01-06 21:09:50 +01:00
Kim Alvefur
9251fa5500
mod_csi_simple: Consider messages forwarded from another of the users clients as important (fixes part of #1250 )
2019-01-06 21:08:11 +01:00
Kim Alvefur
38c98346b1
mod_csi_simple: Tweak check for <body>
...
There were code that checked the body for mentions but isn't included.
2019-01-06 21:03:09 +01:00
Kim Alvefur
a24712e845
mod_csi: Set session.state to simplify CSI modules
...
Moved here from mod_csi_simple
2018-11-27 19:34:21 +01:00
Kim Alvefur
64b9b5a758
mod_csi_simple: Fix autocompletion mistake
2018-11-27 19:15:33 +01:00
Kim Alvefur
1796f20abc
mod_csi_simple: Bypass importance event in active mode ( fixes #1249 )
2018-11-27 19:05:11 +01:00
Kim Alvefur
0db6c3f669
mod_csi_simple: Don't set <delay> stamps on <iq> stanzas ( fixes #1248 )
2018-11-27 18:56:22 +01:00
Kim Alvefur
ad38cc8fbe
mod_csi_simple: Use the same event name when firing as when hooking ( fixes #1245 )
2018-11-25 14:47:36 +01:00
Kim Alvefur
3d3e0fa082
mod_csi_simple: Consider non-stanza objects important
...
Most cases are for keepalive or stream closing, where it needs to be
flushed anyways.
2018-11-17 15:36:10 +01:00
Kim Alvefur
23be1afef6
mod_csi_simple: Skip delay tags on objects other than stanzas (thanks quest)
...
This may be triggered by sending strings, eg as done by mod_c2s for
keepalives, stream errors, "</stream>".
2018-11-17 15:28:49 +01:00
Kim Alvefur
61151d4d82
mod_csi_simple: Import modified version of mod_csi_pump from prosody-modules
2018-10-29 21:15:38 +01:00
Kim Alvefur
6fcaa64f61
mod_csi_simple: Disable optimizations on disconnect ( fixes #1358 )
...
The connection becomes invalid here, regardless of 3rd party modules
that might keep the session alive.
2019-05-26 15:04:16 +02: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