diff options
author | Kim Alvefur <zash@zash.se> | 2021-12-01 23:18:18 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-12-01 23:18:18 +0100 |
commit | d34e453ec32ff9f762dac2d11dab4e694f5753dd (patch) | |
tree | 6bd2e725c73369400009303d98e36935a7b292f5 /plugins | |
parent | 7182a72911b677f951facf49ebe01c8ab4fa7376 (diff) | |
download | prosody-d34e453ec32ff9f762dac2d11dab4e694f5753dd.tar.gz prosody-d34e453ec32ff9f762dac2d11dab4e694f5753dd.zip |
mod_smacks: Reorder imports etc
Mostly sorted by name of import (sort -k4) and grouped by kind
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_smacks.lua | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/plugins/mod_smacks.lua b/plugins/mod_smacks.lua index 53ef87b3..f471388f 100644 --- a/plugins/mod_smacks.lua +++ b/plugins/mod_smacks.lua @@ -11,25 +11,29 @@ -- COPYING file in the source package for more information. -- -local st = require "util.stanza"; -local cache = require "util.cache"; -local uuid_generate = require "util.uuid".generate; -local jid = require "util.jid"; - -local t_remove = table.remove; -local math_min = math.min; +local tonumber = tonumber; +local tostring = tostring; local math_max = math.max; +local math_min = math.min; local os_time = os.time; -local tonumber, tostring = tonumber, tostring; +local t_remove = table.remove; + +local cache = require "util.cache"; +local datetime = require "util.datetime"; local add_filter = require "util.filters".add_filter; +local jid = require "util.jid"; +local st = require "util.stanza"; local timer = require "util.timer"; -local datetime = require "util.datetime"; +local uuid_generate = require "util.uuid".generate; + +local sessionmanager = require "core.sessionmanager"; +local core_process_stanza = prosody.core_process_stanza; +local xmlns_errors = "urn:ietf:params:xml:ns:xmpp-stanzas"; +local xmlns_delay = "urn:xmpp:delay"; local xmlns_mam2 = "urn:xmpp:mam:2"; local xmlns_sm2 = "urn:xmpp:sm:2"; local xmlns_sm3 = "urn:xmpp:sm:3"; -local xmlns_errors = "urn:ietf:params:xml:ns:xmpp-stanzas"; -local xmlns_delay = "urn:xmpp:delay"; local sm2_attr = { xmlns = xmlns_sm2 }; local sm3_attr = { xmlns = xmlns_sm3 }; @@ -42,8 +46,6 @@ local max_inactive_unacked_stanzas = module:get_option_number("smacks_max_inacti local delayed_ack_timeout = module:get_option_number("smacks_max_ack_delay", 30); local max_hibernated_sessions = module:get_option_number("smacks_max_hibernated_sessions", 10); local max_old_sessions = module:get_option_number("smacks_max_old_sessions", 10); -local core_process_stanza = prosody.core_process_stanza; -local sessionmanager = require "core.sessionmanager"; assert(max_hibernated_sessions > 0, "smacks_max_hibernated_sessions must be greater than 0"); assert(max_old_sessions > 0, "smacks_max_old_sessions must be greater than 0"); |