CIRCServer.onPong Member

Syntax

object.onPong(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function serv_pong (e)
{
if (e.params[2] != "LAGTIMER")
return true;
if (this.lastPingSent)
this.lag = (new Date() - this.lastPingSent) / 1000;
this.lastPingSent = null;
e.destObject = this.parent;
e.set = "network";
return true;
}