diff options
author | Kim Alvefur <zash@zash.se> | 2015-09-18 16:14:43 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-09-18 16:14:43 +0200 |
commit | 7a845c8961fa0495376bfbacee9b44210b3e7928 (patch) | |
tree | c6f668db52381913c3a11b14c696df4c9bd5a8ac /tools/xep227toprosody.lua | |
parent | 28d21c104a784b2762f2ca23a421f6865c8ee887 (diff) | |
download | prosody-7a845c8961fa0495376bfbacee9b44210b3e7928.tar.gz prosody-7a845c8961fa0495376bfbacee9b44210b3e7928.zip |
xep227toprosody: Pass parser to callbacks (needed since addition of stanza size limits)
Diffstat (limited to 'tools/xep227toprosody.lua')
-rwxr-xr-x | tools/xep227toprosody.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/xep227toprosody.lua b/tools/xep227toprosody.lua index 0862b0c1..81c9863b 100755 --- a/tools/xep227toprosody.lua +++ b/tools/xep227toprosody.lua @@ -202,7 +202,7 @@ function lxp_handlers.StartElement(parser, elementname, attributes) --count = count + 1; if curr_host ~= "" then -- forward to xmlhandlers - user_handlers:StartElement(elementname, attributes); + user_handlers.StartElement(parser, elementname, attributes); elseif (curr_ns == xmlns_xep227) and (name == "host") then curr_host = attributes["jid"]; -- start of host element print("Begin parsing host "..curr_host); @@ -226,7 +226,7 @@ function lxp_handlers.EndElement(parser, elementname) curr_host = "" -- end of host element else -- forward to xmlhandlers - user_handlers:EndElement(elementname); + user_handlers.EndElement(parser, elementname); end elseif (curr_ns ~= xmlns_xep227) or (name ~= "server-data") then io.stderr:write("Unhandled XML element: ", name, "\n"); @@ -237,7 +237,7 @@ end function lxp_handlers.CharacterData(parser, string) if curr_host ~= "" then -- forward to xmlhandlers - user_handlers:CharacterData(string); + user_handlers.CharacterData(parser, string); end end |