mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_shell: Show session id ping reply came
To point out which one when more than one connection was established, or if it's an existing connection, allows correlation with s2s:show() or with logs.
This commit is contained in:
parent
32eb31a9a1
commit
d0ab468f40
1 changed files with 1 additions and 1 deletions
|
@ -1533,7 +1533,7 @@ function def_env.xmpp:ping(localhost, remotehost, timeout)
|
|||
module:unhook("s2sin-established", onestablished);
|
||||
module:unhook("s2s-destroyed", ondestroyed);
|
||||
end):next(function(pong)
|
||||
return ("pong from %s in %gs"):format(pong.stanza.attr.from, time.now() - time_start);
|
||||
return ("pong from %s on %s in %gs"):format(pong.stanza.attr.from, pong.origin.id, time.now() - time_start);
|
||||
end);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue