plugins/keepalive.lua

Sun, 27 Nov 2011 21:40:42 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 27 Nov 2011 21:40:42 +0000
changeset 233
b5fd3292bdbd
parent 206
1bf01ffcb5a3
child 250
a5ac643a7fd6
permissions
-rw-r--r--

squishy: Rewrite in an attempt to curb the unbounded growth of the plugin list

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