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:
Kim Alvefur 2022-06-13 21:25:42 +02:00
parent 32eb31a9a1
commit d0ab468f40

View file

@ -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