plugins/ping.lua

Fri, 06 Jan 2012 16:54:10 +0100

author
Kim Alvefur <zash@zash.se>
date
Fri, 06 Jan 2012 16:54:10 +0100
changeset 273
c5b7a4c717a6
parent 250
a5ac643a7fd6
child 339
72fbfb0367e9
permissions
-rw-r--r--

plugins.archive: Experimental implementation of the Message Archive Management ProtoXEP

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
	return true;
end

mercurial