This file is indexed.

/usr/share/doc/ucspi-tcp/README.Debian is in ucspi-tcp 1:0.88-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
ucspi-tcp for Debian
--------------------

From http://cr.yp.to/ucspi-tcp.html:

tcpserver and tcpclient are easy-to-use command-line tools for building TCP
client-server applications. 

tcpserver waits for incoming connections and, for each connection, runs a
program of your choice. Your program receives environment
variables showing the local and remote host names, IP addresses, and port
numbers. 

tcpserver offers a concurrency limit to protect you from running out of
processes and memory. When you are handling 40 (by default)
simultaneous connections, tcpserver smoothly defers acceptance of new
connections. 

tcpserver also provides TCP access control features, similar to
tcp-wrappers/tcpd's hosts.allow but much faster. Its access control rules
are compiled into a hashed format with cdb, so it can easily deal with
thousands of different hosts. 

This package includes a recordio tool that monitors all the input and output
of a server. 

tcpclient makes a TCP connection and runs a program of your choice. It sets
up the same environment variables as tcpserver. 

This package includes several sample clients built on top of tcpclient:
who@, date@, finger@, http@, tcpcat, and mconnect. 

tcpserver and tcpclient conform to UCSPI, the UNIX Client-Server Program
Interface, using the TCP protocol. UCSPI tools are
available for several different networks. 

Other command-line TCP tools

The current ucspi-tcp interface is a refinement of the tcpserver/tcpclient
interface in my 1991 clientserver package, which replaced the
attachport/authtcp interface in my 1989 auth package. 

ucspi-tcp now competes with several other programs: 

      inetd, a root-only TCP server supplied by all UNIX vendors; 
      xinetd, a replacement for inetd; 
      the mconnect client supplied as part of SunOS; 
      the socket program; 
      faucet and hose, part of the netpipes package; and 
      the netcat program, which also supports UDP. 

Many sites are replacing inetd with tcpserver, for several reasons: 

      inetd is unreliable under high loads. It cuts off service for 10
      minutes if it receives `too many'' connections in 1 minute. 
      inetd does not provide effective resource management. It will happily
      use up all your memory if you are running a popular service. 
      inetd has trouble with sudden bursts of activity. Its listen() backlog
      is typically only 5 or 10 and cannot be raised.

 -- Gerrit Pape <pape@smarden.org>, Mon, 15 Oct 2001 13:25:22 +0200