From: Kim Alvefur Date: Tue, 19 Apr 2016 15:59:22 +0000 (+0200) Subject: mod_bosh: Fix imports that got lost in merge X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=44f519989b9f805c02c78a7b45fd09fd19dfa439;p=prosody.git mod_bosh: Fix imports that got lost in merge --- diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index b65e7685..e43d8569 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -22,6 +22,8 @@ local initialize_filters = require "util.filters".initialize; local math_min = math.min; local xpcall, tostring, type = xpcall, tostring, type; local traceback = debug.traceback; +local runner = require"util.async".runner; +local nameprep = require "util.encodings".stringprep.nameprep; local xmlns_streams = "http://etherx.jabber.org/streams"; local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";