Switched package from com.samskivert to com.threerings.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@12 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
//
|
||||
// $Id: Authenticator.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: Authenticator.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import com.samskivert.cocktail.cher.net.AuthRequest;
|
||||
import com.samskivert.cocktail.cher.net.AuthResponse;
|
||||
import com.threerings.cocktail.cher.net.AuthRequest;
|
||||
import com.threerings.cocktail.cher.net.AuthResponse;
|
||||
|
||||
/**
|
||||
* The authenticator is a pluggable component of the authentication
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
//
|
||||
// $Id: DummyAuthenticator.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: DummyAuthenticator.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server;
|
||||
package com.threerings.cocktail.cher.server;
|
||||
|
||||
import com.samskivert.cocktail.cher.Log;
|
||||
import com.samskivert.cocktail.cher.net.*;
|
||||
import com.samskivert.cocktail.cher.server.net.Authenticator;
|
||||
import com.samskivert.cocktail.cher.util.Codes;
|
||||
import com.threerings.cocktail.cher.Log;
|
||||
import com.threerings.cocktail.cher.net.*;
|
||||
import com.threerings.cocktail.cher.server.net.Authenticator;
|
||||
import com.threerings.cocktail.cher.util.Codes;
|
||||
|
||||
public class DummyAuthenticator implements Authenticator
|
||||
{
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
//
|
||||
// $Id: PresentsServer.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: PresentsServer.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server;
|
||||
package com.threerings.cocktail.cher.server;
|
||||
|
||||
import com.samskivert.cocktail.cher.Log;
|
||||
import com.samskivert.cocktail.cher.server.net.AuthManager;
|
||||
import com.samskivert.cocktail.cher.server.net.ConnectionManager;
|
||||
import com.threerings.cocktail.cher.Log;
|
||||
import com.threerings.cocktail.cher.server.net.AuthManager;
|
||||
import com.threerings.cocktail.cher.server.net.ConnectionManager;
|
||||
|
||||
/**
|
||||
* The cher server provides a central point of access to the various
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
//
|
||||
// $Id: AuthManager.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: AuthManager.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import com.samskivert.util.LoopingThread;
|
||||
import com.samskivert.util.Queue;
|
||||
|
||||
import com.samskivert.cocktail.cher.Log;
|
||||
import com.samskivert.cocktail.cher.net.AuthRequest;
|
||||
import com.samskivert.cocktail.cher.net.AuthResponse;
|
||||
import com.threerings.cocktail.cher.Log;
|
||||
import com.threerings.cocktail.cher.net.AuthRequest;
|
||||
import com.threerings.cocktail.cher.net.AuthResponse;
|
||||
|
||||
/**
|
||||
* The authentication manager takes care of the authentication process.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
//
|
||||
// $Id: AuthingConnection.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: AuthingConnection.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import ninja2.core.io_core.nbio.NonblockingSocket;
|
||||
|
||||
import com.samskivert.cocktail.cher.Log;
|
||||
import com.samskivert.cocktail.cher.net.UpstreamMessage;
|
||||
import com.samskivert.cocktail.cher.net.AuthRequest;
|
||||
import com.threerings.cocktail.cher.Log;
|
||||
import com.threerings.cocktail.cher.net.UpstreamMessage;
|
||||
import com.threerings.cocktail.cher.net.AuthRequest;
|
||||
|
||||
/**
|
||||
* The authing connection manages the client connection until
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
//
|
||||
// $Id: Connection.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: Connection.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import java.io.*;
|
||||
import ninja2.core.io_core.nbio.*;
|
||||
|
||||
import com.samskivert.cocktail.cher.Log;
|
||||
import com.samskivert.cocktail.cher.io.FramedInputStream;
|
||||
import com.samskivert.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.samskivert.cocktail.cher.net.UpstreamMessage;
|
||||
import com.samskivert.cocktail.cher.net.DownstreamMessage;
|
||||
import com.threerings.cocktail.cher.Log;
|
||||
import com.threerings.cocktail.cher.io.FramedInputStream;
|
||||
import com.threerings.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.threerings.cocktail.cher.net.UpstreamMessage;
|
||||
import com.threerings.cocktail.cher.net.DownstreamMessage;
|
||||
|
||||
/**
|
||||
* The base connection class implements the net event handler interface
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: ConnectionManager.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: ConnectionManager.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
@@ -11,11 +11,11 @@ import com.samskivert.util.LoopingThread;
|
||||
import com.samskivert.util.Tuple;
|
||||
import com.samskivert.util.Queue;
|
||||
|
||||
import com.samskivert.cocktail.cher.Log;
|
||||
import com.samskivert.cocktail.cher.io.FramingOutputStream;
|
||||
import com.samskivert.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.samskivert.cocktail.cher.net.DownstreamMessage;
|
||||
import com.samskivert.cocktail.cher.net.Registry;
|
||||
import com.threerings.cocktail.cher.Log;
|
||||
import com.threerings.cocktail.cher.io.FramingOutputStream;
|
||||
import com.threerings.cocktail.cher.io.TypedObjectFactory;
|
||||
import com.threerings.cocktail.cher.net.DownstreamMessage;
|
||||
import com.threerings.cocktail.cher.net.Registry;
|
||||
|
||||
/**
|
||||
* The connection manager manages the socket on which connections are
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: ConnectionObserver.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: ConnectionObserver.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: NetEventHandler.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: NetEventHandler.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import ninja2.core.io_core.nbio.Selectable;
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
//
|
||||
// $Id: RunningConnection.java,v 1.1 2001/05/29 03:27:59 mdb Exp $
|
||||
// $Id: RunningConnection.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
||||
|
||||
package com.samskivert.cocktail.cher.server.net;
|
||||
package com.threerings.cocktail.cher.server.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import ninja2.core.io_core.nbio.NonblockingSocket;
|
||||
import com.samskivert.cocktail.cher.net.UpstreamMessage;
|
||||
import com.threerings.cocktail.cher.net.UpstreamMessage;
|
||||
|
||||
/**
|
||||
* A running connection object represents a fully operational client
|
||||
|
||||
Reference in New Issue
Block a user