* alpha 1
Quick install:

install postgres


	run 'createuser' to create a user root 
	as root run 'creatdb usage' to create database in postgres
	create schema in database/create.sql
	the end of this script also creates the static data for the protocol table


	./configure specifying the location of the postgres and pcap top level directories
	(if anyone wants to change the configure.in to include more places go right ahead).
	

	make
	make install

	run as root (needed because it needs to capture from the ethernet port).
	tcap -d eth0 -p 0

	This will print crap and insert stuff into the database live.

Usage:
	x dns expiry time: the time an entry lives int he dns cache
	-s sleep_time: the time the write sleeps for
	-p num_packets: the number of packets to collect, 0 for forever
	-f filter: pcap filter argument
	-d or -i: device (or interface) to capure on
	-a: age of to/from packets inactivity before writing to db
	-c: connection string


Note that the -f filter specification is the pcap filter grammar and is described in the tcpdump manual entry.
Example:
	./tcap -d eth1 -p 10000 -f "dst host not 172.28.11.255"



NOTE:
	make sure postgresql.conf in the postgres data dir has
	tcpip_socket = true
	near the top for the odbs driver to be able to connect to it.



More documentation to follow.

