File

plugins/keepalive.lua @ 438:98dc1750584d 0.10.0

pubsub: Support for 'notify' in retract and purge operations This is a slight API change for :retract(), but should be backwards-compatible.
author Matthew Wild <mwild1@gmail.com>
date Mon, 06 Dec 2021 09:09:50 +0000
parent 250:a5ac643a7fd6
line wrap: on
line source

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