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.

250
a5ac643a7fd6 added local verse var to all plugins
mva <mva@mva.name>
parents: 206
diff changeset
1 local verse = require "verse";
a5ac643a7fd6 added local verse var to all plugins
mva <mva@mva.name>
parents: 206
diff changeset
2
206
1bf01ffcb5a3 plugins.keepalive: Add (thanks chris)
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 function verse.plugins.keepalive(stream)
1bf01ffcb5a3 plugins.keepalive: Add (thanks chris)
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4 stream.keepalive_timeout = stream.keepalive_timeout or 300;
1bf01ffcb5a3 plugins.keepalive: Add (thanks chris)
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 verse.add_task(stream.keepalive_timeout, function ()
1bf01ffcb5a3 plugins.keepalive: Add (thanks chris)
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 stream.conn:write(" ");
1bf01ffcb5a3 plugins.keepalive: Add (thanks chris)
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 return stream.keepalive_timeout;
1bf01ffcb5a3 plugins.keepalive: Add (thanks chris)
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 end);
1bf01ffcb5a3 plugins.keepalive: Add (thanks chris)
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9 end

mercurial