# HG changeset patch # User Kim Alvefur # Date 1461081562 -7200 # Node ID bbed548b4306b52726bf8065aef73fe71891c4bf # Parent 77a3ef93715280d5dd382168e094345a3595ce83 mod_bosh: Fix imports that got lost in merge diff -r 77a3ef937152 -r bbed548b4306 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Tue Apr 19 17:44:11 2016 +0200 +++ b/plugins/mod_bosh.lua Tue Apr 19 17:59:22 2016 +0200 @@ -22,6 +22,8 @@ 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";