=============
Client / Server Demo

Author : Nate 'm|d' Miller
Date   : 9/02/99
Web    : http://members.home.com/vandals1
Email  : vandals1@home.com
=============

    This is just a simple client and server demo.  I use UDP for the 
communications between the client and server.  The server in this demo is 
a dumb server.  The only thing that it is capable of is sending a packet back 
to the address in which it came from.  Basically what I have created is a echo 
server.  The server does not keep a list of its clients and it does not filter 
out data that it recieves to make sure its coming from the correct source.  If 
the servers packet buffer is too small for data that is waiting to be read it 
just drops the packet and continues on.  The client application that I created
should not be sending data that is greater tham PACKET_SIZE so we assume that
if we recieve too much data that its not from one of our clients.  Again this 
is a very simple server.  It does not do much but because I didn't want it to 
do all that much.  I created it so that people could learn how to use Winsock 
at a very basic level.  If you have any questions email me at vandals1@home.com  
