Comparison

plugins/mod_legacyauth.lua @ 11120:b2331f3dfeea

Merge 0.11->trunk
author Matthew Wild <mwild1@gmail.com>
date Wed, 30 Sep 2020 09:50:33 +0100
parent 10557:e1cb869e2f6c
child 12328:a80314101bc6
comparison
equal deleted inserted replaced
11119:68df52bf08d5 11120:b2331f3dfeea
76 elseif resource ~= session.resource then -- server changed resource, not supported by legacy auth 76 elseif resource ~= session.resource then -- server changed resource, not supported by legacy auth
77 session.send(st.error_reply(stanza, "cancel", "conflict", "The requested resource could not be assigned to this session.")); 77 session.send(st.error_reply(stanza, "cancel", "conflict", "The requested resource could not be assigned to this session."));
78 session:close(); -- FIXME undo resource bind and auth instead of closing the session? 78 session:close(); -- FIXME undo resource bind and auth instead of closing the session?
79 return true; 79 return true;
80 end 80 end
81 session.send(st.reply(stanza));
82 else
83 session.send(st.error_reply(stanza, "auth", "not-authorized", err));
81 end 84 end
82 session.send(st.reply(stanza));
83 else 85 else
84 session.send(st.error_reply(stanza, "auth", "not-authorized")); 86 session.send(st.error_reply(stanza, "auth", "not-authorized"));
85 end 87 end
86 end 88 end
87 return true; 89 return true;