mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.stanza_router: Remove hack for allowing resource binding IQ before resource binding
This commit is contained in:
parent
e701756ba9
commit
2c7554d634
1 changed files with 0 additions and 10 deletions
|
@ -79,16 +79,6 @@ function core_process_stanza(origin, stanza)
|
|||
end
|
||||
end
|
||||
|
||||
if not origin.full_jid
|
||||
and not(name == "iq" and st_type == "set" and stanza.tags[1] and stanza.tags[1].name == "bind"
|
||||
and stanza.tags[1].attr.xmlns == "urn:ietf:params:xml:ns:xmpp-bind") then
|
||||
-- authenticated client isn't bound and current stanza is not a bind request
|
||||
if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then
|
||||
origin.send(st.error_reply(stanza, "auth", "not-authorized")); -- FIXME maybe allow stanzas to account or server
|
||||
end
|
||||
return;
|
||||
end
|
||||
|
||||
-- TODO also, stanzas should be returned to their original state before the function ends
|
||||
stanza.attr.from = origin.full_jid;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue