mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.sasl.*, mod_auth_*, mod_saslauth: Pass SASL handler as first parameter to SASL profile callbacks.
This commit is contained in:
parent
a4d4abfeb7
commit
aa144af70e
8 changed files with 12 additions and 12 deletions
|
@ -36,7 +36,7 @@ function new_default_provider(host)
|
|||
function provider.get_sasl_handler()
|
||||
local realm = module:get_option("sasl_realm") or module.host;
|
||||
local anonymous_authentication_profile = {
|
||||
anonymous = function(username, realm)
|
||||
anonymous = function(sasl, username, realm)
|
||||
return true; -- for normal usage you should always return true here
|
||||
end
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue