Software /
code /
prosody
File
net/connhandlers.lua @ 80:523ac742cc19
Fixed: rostermanager.lua now returns the module
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 08 Oct 2008 21:10:18 +0500 |
parent | 38:3fdfd6e0cb4e |
line wrap: on
line source
local lxp = require "lxp" local init_xmlhandlers = require "core.xmlhandlers" module "connhandlers" function new(name, session) if name == "xmpp-client" then local parser = lxp.new(init_xmlhandlers(session), ":"); local parse = parser.parse; return { data = function (self, data) return parse(parser, data); end, parser = parser } end end return _M;