* src/ejabberd_s2s.erl: API improvement: Added s2s_connect_hook (EJAB-566).

SVN Revision: 1233
This commit is contained in:
Mickaël Rémond 2008-03-15 09:39:10 +00:00
parent c086292651
commit 1a616a91ef
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-03-15 Mickael Remond <mremond@process-one.net>
* src/ejabberd_s2s.erl: API improvement: Added s2s_connect_hook
(EJAB-566).
2008-03-13 Badlop <badlop@process-one.net>
* src/odbc/ejabberd_odbc.erl: Start ODBC explicitely because

View File

@ -359,6 +359,7 @@ new_connection(MyServer, Server, From, FromTo,
TRes = mnesia:transaction(F),
case TRes of
{atomic, Pid} ->
ejabberd_hooks:run(s2s_connect_hook, [MyServer, Server]),
ejabberd_s2s_out:start_connection(Pid);
_ ->
ejabberd_s2s_out:stop_connection(Pid)