FCE Ultra Network Play Server v0.0.4
------------------------------------

To compile, type this in the shell:
$ make
To install, type this in this shell:
$ sudo make install
To run, type this in shell:
$ ./fceu-server fceu-server.conf

To compile under MS Windows, you should use Cygwin.  I'm not
going to change this server to use Win-old-dirty-smelly-sock natively.

If it doesn't compile, sell your <eternally lasting essence of self> to the 
<evil entity of your religion>.

Most beings can run it like "./fceu-server fceu-server.conf >logfile &".
Windows users can run it some other way.  A batch file with absolute paths, perhaps?
	snuggums.bat:
		C:\somethingdirectory\server.exe c:\somethingdirectory\standard.conf

With the default settings, each client should use about 65-70Kbps, excluding any
data transferred during chat, state loads, etc(which should be negligible, but limits
will be placed on these types of transfers in the future).

Clients connecting with high-latency or slow links may use more bandwidth, or they
may use less bandwidth.  I'm really not quite sure.  If it concerns you, test it.

Any client connecting over VERY high latency links, such as bidirectional satellite connections,
may find that attempting network play will lock up his/her connection for 
several minutes.  Right, Disch. ;)

The server probably won't scale well to a huge number of clients connected at the same time.

Bumping up the server's priority and running it on a low-latency kernel(preferably with
1 ms or smaller timeslices) should help make network play more usable if you're running the 
network play server on an otherwise non-idle physical server.



TODO:

Implement a more flexible timing system, so that PAL games will be playable.

Change the protocol to allow the client to specify the size of input update information,
so devices like the powerpad or zapper can work over network play.

Send emulation info, such as NTSC/PAL, input devices, and Game Genie emulation at connect
time, to make it easier on end users.


Changes:
0.0.4   Renamed from "server" to "fceu-server".
	Renamed standard.conf -> fceu-standard.conf
	If no configuration file is specified, look in /etc and ./
	Added a --help option.
	Added GPL headers
	
0.0.3:	Error messages during server startup are more verbose(slightly).

	Fixed initialization of the sockaddr_in structure, sin_family
	member.  It's now initialized to AF_INET before calling bind().
	While not initializing that member seemed to work ok on Linux 2.4,
	it won't work on Linux 2.2 and under Cygwin, and possibly other
	environments.

0.0.2:  Switched to using fcntl() to set the socket to nonblocking, so I
	don't need to use MSG_NOWAIT in send() anymore, which is undefined
	under Cygwin.

	Added a "clean" Makefile target.

0.0.1:	First Release
