Type "make" to compile, let me(jer@jeremie.com) know if it doesn't compile or you get errors/warnings.

After it's comipled, run 
./jabber.transport -l /location/of/jabber.socket
Use -D to see lots of debugging messages.

===================

This is the main/default transport that handles connections and data from clients.

There is one very basic module included at this point, which provides only BASIC user features and authenticates any
username/password(for testing purposes), and it doesn't even store offline messages.  Work should begin soon on a mysql based module that
is fully featured.  If you have any experience in these areas, or want to start helping out without learning the internals of the entire
thing, take a look at mod_basic.c and play.

Here is a REAL rough overview of the internals:

startup
connect over the file socket to the jabberbox
get config data from jabberbox
initialize modules
start listening on the network socket 5222 for client connections
loop:
	accept packets from clients
	parse them into a common "package" structure
	pass that filled structure to a handler based on what type of packet it was
	marshal between the package data and the modules
	create an outgoing packet in response or to another client


