Set username on SASL success

This commit is contained in:
Waqas Hussain 2008-11-16 00:25:28 +05:00
parent 9245e20027
commit 1b6b09a27d

View file

@ -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