|****************************************|
|	  Background info		 |
|    PURE Internet Relay Chat daemon	 |
| Created by Dilligent on 1/15/2003 12:30|
|       PURE can be obtained from	 |
|   http://dillerthekiller.free.fr/pure	 |
******************************************

This document is provided to you to get you some background information to some 
things i've developed into PURE.

The main thing is the User Hastable.
As long as this is going to be an standalone server there is absolutely no need for
a Hashtable to store user records in.

NOTE:	Every connections is assigned an index so the server is able to to recognize a connection
	and map it to a nickname/servername.
	Though, as soon as networking is becoming an issue, the server will recieve new user messages
	which arent local. If the server would use the same data storage system as it used for local connections,
	it would break the whole system because the indexes for users would no longer match the ones for connections.
	Thus all these clients will ALSO be stored in an hashtable now, but the non-local users will not be assigned an index.

it may be hard to understand that without having ever coded for PURE, but i dont see an easier way to write it down, sorry.