Adding a parameter for realm to the password_callback.

This commit is contained in:
Tobias Markmann 2009-06-20 19:34:30 +02:00
parent 8be1d2e2d6
commit 968abac469

View file

@ -64,15 +64,15 @@ local function handle_status(session, status)
end end
end end
local function password_callback(node, host, mechanism, decoder) local function password_callback(node, hostname, realm, mechanism, decoder)
local password = (datamanager_load(node, host, "accounts") or {}).password; -- FIXME handle hashed passwords local password = (datamanager_load(node, hostname, "accounts") or {}).password; -- FIXME handle hashed passwords
local func = function(x) return x; end; local func = function(x) return x; end;
if password then if password then
if mechanism == "PLAIN" then if mechanism == "PLAIN" then
return func, password; return func, password;
elseif mechanism == "DIGEST-MD5" then elseif mechanism == "DIGEST-MD5" then
if decoder then node, host, password = decoder(node), decoder(host), decoder(password); end if decoder then node, hostname, password = decoder(node), decoder(hostname), decoder(password); end
return func, md5(node..":"..host..":"..password); return func, md5(node..":"..realm..":"..password);
end end
end end
return func, nil; return func, nil;