util.xmppstream: Expose ns_separator and ns_pattern

This commit is contained in:
Matthew Wild 2010-12-07 19:19:05 +00:00
parent 673d2cd2a3
commit c662c73374

View file

@ -31,6 +31,9 @@ local xmlns_streams = "http://etherx.jabber.org/streams";
local ns_separator = "\1";
local ns_pattern = "^([^"..ns_separator.."]*)"..ns_separator.."?(.*)$";
_M.ns_separator = ns_separator;
_M.ns_pattern = ns_pattern;
function new_sax_handlers(session, stream_callbacks)
local xml_handlers = {};