mirror of
https://github.com/processone/ejabberd
synced 2025-10-06 03:50:15 +02:00
Use new configuration validator
This commit is contained in:
parent
d48c067681
commit
a02cff0e78
265 changed files with 12412 additions and 9918 deletions
41
src/mod_multicast_opt.erl
Normal file
41
src/mod_multicast_opt.erl
Normal file
|
@ -0,0 +1,41 @@
|
|||
%% Generated automatically
|
||||
%% DO NOT EDIT: run `make options` instead
|
||||
|
||||
-module(mod_multicast_opt).
|
||||
|
||||
-export([access/1]).
|
||||
-export([host/1]).
|
||||
-export([hosts/1]).
|
||||
-export([limits/1]).
|
||||
-export([name/1]).
|
||||
|
||||
-spec access(gen_mod:opts() | global | binary()) -> 'all' | acl:acl().
|
||||
access(Opts) when is_map(Opts) ->
|
||||
gen_mod:get_opt(access, Opts);
|
||||
access(Host) ->
|
||||
gen_mod:get_module_opt(Host, mod_multicast, access).
|
||||
|
||||
-spec host(gen_mod:opts() | global | binary()) -> binary().
|
||||
host(Opts) when is_map(Opts) ->
|
||||
gen_mod:get_opt(host, Opts);
|
||||
host(Host) ->
|
||||
gen_mod:get_module_opt(Host, mod_multicast, host).
|
||||
|
||||
-spec hosts(gen_mod:opts() | global | binary()) -> [binary()].
|
||||
hosts(Opts) when is_map(Opts) ->
|
||||
gen_mod:get_opt(hosts, Opts);
|
||||
hosts(Host) ->
|
||||
gen_mod:get_module_opt(Host, mod_multicast, hosts).
|
||||
|
||||
-spec limits(gen_mod:opts() | global | binary()) -> [{'local',[{'message','infinite' | non_neg_integer()} | {'presence','infinite' | non_neg_integer()}]} | {'remote',[{'message','infinite' | non_neg_integer()} | {'presence','infinite' | non_neg_integer()}]}].
|
||||
limits(Opts) when is_map(Opts) ->
|
||||
gen_mod:get_opt(limits, Opts);
|
||||
limits(Host) ->
|
||||
gen_mod:get_module_opt(Host, mod_multicast, limits).
|
||||
|
||||
-spec name(gen_mod:opts() | global | binary()) -> binary().
|
||||
name(Opts) when is_map(Opts) ->
|
||||
gen_mod:get_opt(name, Opts);
|
||||
name(Host) ->
|
||||
gen_mod:get_module_opt(Host, mod_multicast, name).
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue