Software /
code /
verse
Diff
plugins/smacks.lua @ 380:0891b4e27766
Discard trailing whitespace
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 01 May 2015 23:27:29 +0200 |
parent | 350:04049524fcd1 |
child | 394:c2e959b60c13 |
line wrap: on
line diff
--- a/plugins/smacks.lua Fri May 01 21:46:24 2015 +0200 +++ b/plugins/smacks.lua Fri May 01 23:27:29 2015 +0200 @@ -9,10 +9,10 @@ local last_ack = 0; local last_stanza_time = now(); local timer_active; - + -- State for incoming stanzas local handled_stanza_count = 0; - + -- Catch incoming stanzas local function incoming_stanza(stanza) if stanza.attr.xmlns == "jabber:client" or not stanza.attr.xmlns then @@ -59,14 +59,14 @@ end); return true; end - end + end -- Graceful shutdown local function on_close() stream.resumption_token = nil; stream:unhook("disconnected", on_disconnect); end - + local function handle_sm_command(stanza) if stanza.name == "r" then -- Request for acks for stanzas we received stream:debug("Ack requested... acking %d handled stanzas", handled_stanza_count);