24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-10 21:47:01 +02:00

If s2s fails due to namespace mismatch, show differences to help debugging the problem.

SVN Revision: 2663
This commit is contained in:
Badlop 2009-10-12 22:51:53 +00:00
parent 2565a670b1
commit e5fb89731c

View File

@ -285,10 +285,12 @@ wait_for_stream({xmlstreamstart, Opening}, StateData) ->
{next_state, wait_for_features, StateData, ?FSMTIMEOUT};
{?NS_JABBER_SERVER, false, true} when StateData#state.use_v10 ->
{next_state, wait_for_features, StateData#state{db_enabled = false}, ?FSMTIMEOUT};
_ ->
{NSProvided, _, _} ->
send_element(StateData, exmpp_stream:error('invalid-namespace')),
?INFO_MSG("Closing s2s connection: ~s -> ~s (invalid namespace)",
[StateData#state.myname, StateData#state.server]),
?INFO_MSG("Closing s2s connection: ~s -> ~s (invalid namespace)~n"
"Namespace provided: ~p~nNamespace expected: ~p",
[StateData#state.myname, StateData#state.server,
NSProvided, ?NS_JABBER_SERVER]),
{stop, normal, StateData}
end;