mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
16 lines
391 B
Erlang
16 lines
391 B
Erlang
|
%% @type saslparams() = {sasl_params, Host, Realm, GetPassword, CheckPassword, CheckPasswordDigest}
|
||
|
%% Host = string()
|
||
|
%% Realm = string()
|
||
|
%% GetPassword = function()
|
||
|
%% CheckPassword = function()
|
||
|
%% CheckPasswordDigest = any().
|
||
|
%% Parameters for SASL.
|
||
|
|
||
|
-record(sasl_params, {
|
||
|
host,
|
||
|
realm,
|
||
|
get_password,
|
||
|
check_password,
|
||
|
check_password_digest,
|
||
|
socket}).
|