diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-19 17:59:22 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-19 17:59:22 +0200 |
commit | 5de738348cea45ebdb5260a774482a4205878252 (patch) | |
tree | 2d3f24f72a83445aae4e4e3c2c6cbf61f8182f53 | |
parent | 1792951a48e90ea7bf76d75690b9c0cc8e272beb (diff) | |
download | prosody-5de738348cea45ebdb5260a774482a4205878252.tar.gz prosody-5de738348cea45ebdb5260a774482a4205878252.zip |
mod_bosh: Fix imports that got lost in merge
-rw-r--r-- | plugins/mod_bosh.lua | 2 |
1 files changed, 2 insertions, 0 deletions
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"; |