This is Identification Server as described in RFC-1413 for Linux.
It identifies the owner of a TCP connection given a pair of TCP
port numbers.  It gets its information from /proc/net/tcp, so it
requires the /proc filesystem to be mounted.  rfc1413.txt is
included for your convenience.

To make the executable:
	make identd

To install as root:
	make install

What make install does is
    cp identd /usr/etc/in.identd
    echo 'auth	stream	tcp	nowait	root	/usr/etc/tcpd	in.identd' >> /etc/inetd.conf
    echo 'auth		113/tcp		authentication' >> /etc/services

To make it active, find the pid for inetd with ps xa, and kill -HUP [pid]

To see if it works, try `finger qpliu@pppl.gov'.  Some anon-ftp sites
may also inform you that it works.

This program is in the public domain.

by qpliu@Princeton.EDU may 1994.
