Added facilities for idling out clients that have not communicated with
the server in 90 seconds. The client is set up to ping the server if it has had nothing to say to it for other reasons in the last 60 seconds. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1860 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: RunningConnection.java,v 1.7 2002/09/24 00:50:27 mdb Exp $
|
||||
// $Id: RunningConnection.java,v 1.8 2002/10/29 23:51:26 mdb Exp $
|
||||
|
||||
package com.threerings.presents.server.net;
|
||||
|
||||
@@ -20,10 +20,11 @@ public class RunningConnection extends Connection
|
||||
* client socket.
|
||||
*/
|
||||
public RunningConnection (ConnectionManager cmgr,
|
||||
NonblockingSocket socket)
|
||||
NonblockingSocket socket,
|
||||
long createStamp)
|
||||
throws IOException
|
||||
{
|
||||
super(cmgr, socket);
|
||||
super(cmgr, socket, createStamp);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user