Update databases/mariadb105-server to version 10.5.17
[dports.git] / net / tcpcat / pkg-descr
1 From the tcpcat README:
2
3 Tcpcat is a simple program that is like `cat' but it works over TCP streams
4 to allow you to cat from one host to another.
5
6 The host common way to use this program whould be something like this:
7 on host a: $ tcpcat -l 93255 | gzip -dc | tar xvf -
8 on host b: $ tcpcat -h hosta:93255  file.tar.gz
9
10 Another good use for this program is debugging network stuff. When debugging
11 a 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
13 when invoded with --listen, --input, and --output, this mode is quite useful
14 for network program debugging as well.