log mod_smacks/mod_smacks.lua @ 2145:f965f86a5cad

age author description
2016-03-27 tmolitor mod_smacks: added new events for hibernation start/end
2016-03-21 Kim Alvefur mod_smacks: Prevent queuing multiple <r>
2016-03-17 Kim Alvefur mod_smacks: Adjust filter priorities to avoid conflict with mod_websocket
2016-03-16 Kim Alvefur mod_smacks: Log when sending <r> from read timeout event (0.10+)
2016-03-16 Kim Alvefur mod_smacks: Keep timer object around and stop it when needed (trunk only)
2016-03-16 Kim Alvefur mod_smacks: Increase delay for starting s2s smacks to a non-zero value
2016-03-16 Kim Alvefur mod_smacks: Go back to sending ack requests from a timer a moment after a stanza was sent
2016-03-16 Kim Alvefur mod_smacks: Drop stanzas instead of turning them into the empty string
2015-09-29 Kim Alvefur mod_smacks: Add experimental resending of unacked messages in s2s queues (disabled by default)
2015-05-11 Kim Alvefur mod_smacks: Handle the read timeout event (0.10+ only) and send an ack request, close the connection the second time if unanswerd
2015-05-11 Kim Alvefur mod_smacks: Handle unacked messages in s2s queues
2015-05-05 Kim Alvefur mod_smacks: Set session upvalue of filter() to correct session
2015-05-05 Kim Alvefur mod_smacks: Move set of filters from new session to session being resumed
2015-05-05 Kim Alvefur mod_smacks: Don't touch upvalues of session.send and session.data, they should already point to the correct values
2015-05-05 Kim Alvefur mod_smacks: Add stanza counting filter when resuming session
2015-04-09 Kim Alvefur mod_smacks: Add license header
2015-03-21 Matthew Wild mod_smacks: Don't restore filters from original session after resumption, use new filters
2015-01-26 Kim Alvefur mod_smacks: Don't attach timestamps to 'iq' stanzas
2015-01-26 Kim Alvefur mod_smacks: Remove negation of condition, most likely a leftover from debugging
2015-01-26 Kim Alvefur mod_smacks: Stanzas don't have a ':' in their name
2014-10-28 Kim Alvefur mod_smacks: Send ack requests by serializing and concatenating them to outgoing stanzas, using a timer might cause high CPU usage
2014-10-20 Kim Alvefur mod_smacks: Delay initiation of outgoing smacks on s2s until after queued stanzas are sent
2014-10-20 Kim Alvefur mod_smacks: Initiate outgoing smacks on s2s when sending request and incoming when the remote says enabled
2014-10-20 Kim Alvefur mod_smacks: Move wrap_session() contents into separate direction-specific routines
2014-10-20 Kim Alvefur mod_smacks: Remove variable not used after 2881d532f385
2014-10-20 Kim Alvefur mod_smacks: Send failure correctly on s2s
2014-10-20 Kim Alvefur mod_smacks: Fix sending ack requests on s2s
2014-10-13 Kim Alvefur mod_smacks: Trick session.send() into not returning nil or mod_message will act as if messages were not delivered
2014-10-12 Kim Alvefur mod_smacks: Use filters for queuing outgoing stanzas instead of wrapping session.send()
2014-10-08 Kim Alvefur mod_smacks: Correctly check if what is being sent is a stanza
2014-09-29 Florian Zeitz mod_smacks: Examine the state of the stanza *before* it was send
2014-06-17 Kim Alvefur mod_smacks: Backout ed2a9c00b5c4, need a better solution
2014-05-22 Kim Alvefur mod_smacks: Fix logging (Thanks Ge0rG)
2014-05-07 Kim Alvefur mod_smacks: Impose a limit on number of unacked stanzas (Thanks Holger)
2014-05-07 Kim Alvefur mod_smacks: Assert that the 'h' attribute is present and a number
2014-05-07 Kim Alvefur mod_smacks: Add more debug logging
2014-05-07 Kim Alvefur mod_smacks: Log things attached to sessions instead of the module
2014-03-11 Florian Zeitz all the things: Remove trailing whitespace
2014-02-28 Kim Alvefur Backed out changeset 853a382c9bd6
2014-02-28 Kim Alvefur mod_turncredentials: Advertise the XEP-0215 feature (thanks Gryffus)
2014-02-03 Florian Zeitz mod_smacks: Handle both version 2 and version 3 namespace
2014-01-30 Matthew Wild mod_smacks: Remove logging of unacked stanzas
2013-05-29 Kim Alvefur mod_smacks: Allow resumption if the TCP connection is closed from our end, c15cea87036f ensures distinction from cleanly closed streams (thanks Lance)
2013-05-05 Kim Alvefur mod_smacks: Complain a little louder about clients trying to resume after resource binding
2013-04-25 Kim Alvefur mod_smacks: Wrap session:close() and make the session not resumable
2013-04-25 Kim Alvefur mod_smacks: If a hibernating session was destroyed before the timeout, don't destroy it again or say that it was resumed
2013-03-09 Kim Alvefur mod_smacks: Don't allow steam resumption onto a stream after resource binding
2013-02-11 Kim Alvefur mod_smacks: Don't try to send stanzas to hibernating sessions. Fixes duplicate IQ replies on libevent.
2013-01-02 Kim Alvefur mod_smacks: 'reason' parameter of session:close() changed to make nil and false mean 'graceful close' in 9da430b69f13
2012-09-12 Kim Alvefur mod_smacks: Avoid indexing a nil value
2012-09-10 Kim Alvefur mod_smacks: Only request ack for stanzas
2012-09-10 Kim Alvefur mod_smacks: Less table indexing!
2012-07-29 Kim Alvefur mod_smacks: Use require to import (thanks a lot, autocomplete)
2012-07-29 Kim Alvefur mod_smacks: Import sessionmanager
2012-07-29 Kim Alvefur mod_smacks: Fix log statement
2012-07-29 Kim Alvefur mod_smacks: Import prosody.core_process_stanza()
2012-04-28 Matthew Wild mod_smacks: Make smacks_max_unacked_stanzas configurable
2012-04-28 Matthew Wild mod_smacks: get_option+_number
2012-04-28 Matthew Wild mod_smacks: Remove dependency on connlisteners (use sessions table shared by mod_c2s directly)
2012-03-19 Matthew Wild mod_smacks: Don't hibernate session on graceful stream close 0.8-diverge