• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

COPYINGH A D29-Sep-199817.6 KiB340281

INSTALLH A D29-Sep-19987.6 KiB184143

Makefile.amH A D16-Oct-2001204 106

Makefile.inH A D30-Oct-20019.7 KiB360274

READMEH A D05-Nov-1998778 2013

acconfig.hH A D20-Sep-199989 75

aclocal.m4H A D30-Oct-20014.3 KiB128113

adler32.cH A D16-Oct-20011.2 KiB4934

config.h.inH A D26-Feb-20012.3 KiB9966

configureH A D30-Oct-200162.5 KiB2,0161,604

configure.inH A D30-Oct-20011.7 KiB7964

getopt.cH A D19-Sep-199928 KiB1,001584

getopt.hH A D20-Sep-19994.6 KiB13448

getopt1.cH A D19-Sep-19994.5 KiB190123

install-shH A D29-Sep-19985.5 KiB251152

missingH A D29-Sep-199840 21

mkinstalldirsH A D29-Sep-1998730 4123

stamp-h.inH A D30-Oct-200110 21

tcpcat.cH A D30-Oct-200142.5 KiB1,8051,423

zlib.hH A D16-Oct-20012.1 KiB6317

README

1"tcpcat"
2
3Tcpcat is a simple program that is like `cat' but it works over tcp streams
4to allow you to cat from one host to another.
5
6The host common way to use this program whould be something like this:
7on host a: $ tcpcat -l 93255 | gzip -dc | tar xvf -
8on host b: $ tcpcat -h hosta:93255  file.tar.gz
9
10Another good use for this program is debugging network stuff. When debugging
11a newtork client or server you can pipe the output of tcpcat to a hex dump
12(I recomend xxd which comes with vim). Also it can act as a crude telnet server
13when invoded with --listen, --input, and --output, this mode is quite useful
14for network program debugging as well.
15
16This program has been tested under Linux and Solaris.
17
18See the file INSTALL for compilation and installation instructions.
19
20