plugins/keepalive.lua

Mon, 06 Dec 2021 09:09:50 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 06 Dec 2021 09:09:50 +0000
changeset 438
98dc1750584d
parent 250
a5ac643a7fd6
permissions
-rw-r--r--

pubsub: Support for 'notify' in retract and purge operations

This is a slight API change for :retract(), but should be backwards-compatible.

local verse = require "verse";

function verse.plugins.keepalive(stream)
	stream.keepalive_timeout = stream.keepalive_timeout or 300;
	verse.add_task(stream.keepalive_timeout, function ()
		stream.conn:write(" ");
		return stream.keepalive_timeout;
	end);
end

mercurial