plugins/keepalive.lua

Thu, 16 Mar 2023 11:41:52 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 16 Mar 2023 11:41:52 +0000
changeset 457
73d4eb93657b
parent 250
a5ac643a7fd6
permissions
-rw-r--r--

Update to use util.id for random ids instead of counters (thanks Zash)

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