mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
Set username on SASL success
This commit is contained in:
parent
9245e20027
commit
1b6b09a27d
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,8 @@ local function handle_status(session, status)
|
|||
if status == "failure" then
|
||||
session.sasl_handler = nil;
|
||||
elseif status == "success" then
|
||||
if not session.sasl_handler.username then error("SASL succeeded but we didn't get a username!"); end -- TODO move this to sessionmanager
|
||||
sessionmanager.make_authenticated(session, session.sasl_handler.username);
|
||||
session.sasl_handler = nil;
|
||||
session:reset_stream();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue