plugins/keepalive.lua

Sun, 20 May 2018 01:15:50 +0200

author
Kim Alvefur <zash@zash.se>
date
Sun, 20 May 2018 01:15:50 +0200
changeset 416
92ce569b9b73
parent 250
a5ac643a7fd6
permissions
-rw-r--r--

buildsys: Update to fetch from Prosody 0.10 branch

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