plugins/ping.lua

Sun, 30 May 2010 02:54:15 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 30 May 2010 02:54:15 +0100
changeset 78
f4188eff53a7
parent 41
1a1bd8cd4bdb
child 147
c95b84ed366b
permissions
-rw-r--r--

verse.client, verse.plugins.bind, verse.plugins.session: Rename binding-success and binding-failure to bind-success and bind-failure for consistency

require "util.xstanza";

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