Software /
code /
prosody
Comparison
core/stanza_router.lua @ 234:7c8313e055fb
Hack to allow s2s stanzas to work until we do proper namespace handling
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 10 Nov 2008 01:30:52 +0500 |
parent | 223:d5dffc919b33 |
child | 237:c1e9b3f3f3a7 |
comparison
equal
deleted
inserted
replaced
232:20745f8f4cf1 | 234:7c8313e055fb |
---|---|
31 local print = print; | 31 local print = print; |
32 | 32 |
33 function core_process_stanza(origin, stanza) | 33 function core_process_stanza(origin, stanza) |
34 log("debug", "Received["..origin.type.."]: "..tostring(st.reply(st.reply(stanza)))) | 34 log("debug", "Received["..origin.type.."]: "..tostring(st.reply(st.reply(stanza)))) |
35 | 35 |
36 if not stanza.attr.xmlns then stanza.attr.xmlns = "jabber:client"; end -- FIXME Hack. This should be removed when we fix namespace handling. | |
36 -- TODO verify validity of stanza (as well as JID validity) | 37 -- TODO verify validity of stanza (as well as JID validity) |
37 if stanza.name == "iq" and not(#stanza.tags == 1 and stanza.tags[1].attr.xmlns) then | 38 if stanza.name == "iq" and not(#stanza.tags == 1 and stanza.tags[1].attr.xmlns) then |
38 if stanza.attr.type == "set" or stanza.attr.type == "get" then | 39 if stanza.attr.type == "set" or stanza.attr.type == "get" then |
39 error("Invalid IQ"); | 40 error("Invalid IQ"); |
40 elseif #stanza.tags > 1 and not(stanza.attr.type == "error" or stanza.attr.type == "result") then | 41 elseif #stanza.tags > 1 and not(stanza.attr.type == "error" or stanza.attr.type == "result") then |