Software /
code /
prosody
Comparison
core/stanza_router.lua @ 2875:2c538d4bde13
stanza_router: Allow non-jabber:client elements after auth, before bind.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Thu, 04 Mar 2010 02:20:17 +0500 |
parent | 2842:298d0ed3f40d |
child | 2876:fa84451e9b35 |
comparison
equal
deleted
inserted
replaced
2874:54c8b3952786 | 2875:2c538d4bde13 |
---|---|
34 origin.send(st.error_reply(stanza, "modify", "bad-request")); | 34 origin.send(st.error_reply(stanza, "modify", "bad-request")); |
35 return; | 35 return; |
36 end | 36 end |
37 end | 37 end |
38 | 38 |
39 if origin.type == "c2s" then | 39 if origin.type == "c2s" and stanza.attr.xmlns == "jabber:client" then |
40 if not origin.full_jid | 40 if not origin.full_jid |
41 and not(stanza.name == "iq" and stanza.attr.type == "set" and stanza.tags[1] and stanza.tags[1].name == "bind" | 41 and not(stanza.name == "iq" and stanza.attr.type == "set" and stanza.tags[1] and stanza.tags[1].name == "bind" |
42 and stanza.tags[1].attr.xmlns == "urn:ietf:params:xml:ns:xmpp-bind") then | 42 and stanza.tags[1].attr.xmlns == "urn:ietf:params:xml:ns:xmpp-bind") then |
43 -- authenticated client isn't bound and current stanza is not a bind request | 43 -- authenticated client isn't bound and current stanza is not a bind request |
44 origin.send(st.error_reply(stanza, "auth", "not-authorized")); -- FIXME maybe allow stanzas to account or server | 44 origin.send(st.error_reply(stanza, "auth", "not-authorized")); -- FIXME maybe allow stanzas to account or server |