24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-28 22:52:27 +02:00

Start supervisor here (thanks to Stefan Strigler)

SVN Revision: 2263
This commit is contained in:
Badlop 2009-06-16 18:23:49 +00:00
parent 7d62dff7e5
commit d019405d51

View File

@ -74,9 +74,18 @@ process(_Path, _Request) ->
%%%----------------------------------------------------------------------
%%% BEHAVIOUR CALLBACKS
%%%----------------------------------------------------------------------
start(_Host, _Opts) ->
ok.
supervisor:start_child(
ejabberd_sup,
{ejabberd_http_bind_sup,
{ejabberd_tmp_sup, start_link,
[ejabberd_http_bind_sup, ejabberd_http_bind]},
permanent,
infinity,
supervisor,
[ejabberd_tmp_sup]}),
ok.
stop(_Host) ->
ok.
supervisor:terminate_child(ejabberd_sup, ejabberd_http_bind_sup),
ok.