package chat;


/**
 * Represents 
 */
public class Server extends util.net.Server
{
    /**
     * Start the server on a default port.
     */
    public Server ()
    {
	super(Constants.PORT);
    }

    /**
     * Creates a server that simply listens on a given port and
     * broadcasts any messages it receives to all connected clients.
     */
    public static void main (String[] args)
    {
	util.net.Debug.turnOn();
	new Server();
    }
}
