Software /
code /
verse
File
plugins/ping.lua @ 33:4581b2e61429
plugins.version: Return true on module load to indicate load success
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 20 Dec 2009 21:35:24 +0000 |
parent | 32:391048601d54 |
child | 34:dd5899412e3f |
line wrap: on
line source
function verse.plugins.ping(stream) function stream:ping(jid, callback) local t = socket.gettime(); stream:send_iq(verse.iq{ to = jid, type = "get" }:tag("ping", { xmlns = xmlns_ping }), function (reply) callback(socket.gettime()-t, jid); end); end end