mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
If s2s fails due to namespace mismatch, show differences to help debugging the problem.
SVN Revision: 2663
This commit is contained in:
parent
2565a670b1
commit
e5fb89731c
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user