Software /
code /
verse
File
plugins/ping.lua @ 496:c4ae7aa2958a
util.sasl.oauthbearer: Fix message syntax
Each key-value pair has a \001 trailer, and then the whole thing has a
\001 trailer as well, so it should always end with two \001.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 23 Jun 2023 10:11:25 +0200 |
parent | 490:6b2f31da9610 |
line wrap: on
line source
local verse = require "verse"; local gettime = require"socket".gettime; local new_id = require "prosody.util.id".short; local xmlns_ping = "urn:xmpp:ping"; function verse.plugins.ping(stream) function stream:ping(jid, callback) local t = gettime(); local id = new_id(); local ping = verse.iq{ id = id, to = jid, type = "get" }:tag("ping", { xmlns = xmlns_ping }); stream:send_iq(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(gettime()-t, jid); end); return id; end stream:hook("iq/"..xmlns_ping, function(stanza) return stream:send(verse.reply(stanza)); end); return true; end