Software /
code /
verse
File
plugins/ping.lua @ 391:b496f0262a3f
libs.encodings: mime.unb64 is buggy with \0 should have been fixed
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 25 Aug 2015 16:27:38 +0200 |
parent | 380:0891b4e27766 |
child | 393:69229fa1d24f |
line wrap: on
line source
local verse = require "verse"; local xmlns_ping = "urn:xmpp:ping"; 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) if reply.attr.type == "error" then local type, condition, text = reply:get_error(); if condition ~= "service-unavailable" and condition ~= "feature-not-implemented" then callback(nil, jid, { type = type, condition = condition, text = text }); return; end end callback(socket.gettime()-t, jid); end); end stream:hook("iq/"..xmlns_ping, function(stanza) return stream:send(verse.reply(stanza)); end); return true; end