diff options
author | James E. Housley <jeh@FreeBSD.org> | 2000-10-29 12:23:52 +0000 |
---|---|---|
committer | James E. Housley <jeh@FreeBSD.org> | 2000-10-29 12:23:52 +0000 |
commit | 1da4d26bf87e1cdadbd8c4850b4779677b5da226 (patch) | |
tree | 425a37884ffee255a5a2e654573d41215bc8a806 /net/tcpcat | |
parent | decbea823126045cc579f99ea1de33233ff84c6e (diff) | |
download | ports-1da4d26bf87e1cdadbd8c4850b4779677b5da226.tar.gz ports-1da4d26bf87e1cdadbd8c4850b4779677b5da226.zip |
New Port: net/tcpcat
A simple utility for sending/receiving data over a TCP or a Unix-domain socket
PR: 22081
Submitted by: Peter Pentchev <roam@orbitel.bg>
Notes
Notes:
svn path=/head/; revision=34396
Diffstat (limited to 'net/tcpcat')
-rw-r--r-- | net/tcpcat/Makefile | 18 | ||||
-rw-r--r-- | net/tcpcat/distinfo | 1 | ||||
-rw-r--r-- | net/tcpcat/pkg-comment | 1 | ||||
-rw-r--r-- | net/tcpcat/pkg-descr | 17 | ||||
-rw-r--r-- | net/tcpcat/pkg-plist | 1 |
5 files changed, 38 insertions, 0 deletions
diff --git a/net/tcpcat/Makefile b/net/tcpcat/Makefile new file mode 100644 index 000000000000..b45667a1ff21 --- /dev/null +++ b/net/tcpcat/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: tcpcat +# Date created: 18 October 2000 +# Whom: roam@orbitel.bg +# +# $FreeBSD$ +# + +PORTNAME= tcpcat +PORTVERSION= 1.0.1 +CATEGORIES= net +MASTER_SITES= http://www.gusnet.cx/proj/tcpcat/ + +MAINTAINER= roam@orbitel.bg + +GNU_CONFIGURE= yes +USE_GMAKE= yes + +.include <bsd.port.mk> diff --git a/net/tcpcat/distinfo b/net/tcpcat/distinfo new file mode 100644 index 000000000000..a4c4e13cf977 --- /dev/null +++ b/net/tcpcat/distinfo @@ -0,0 +1 @@ +MD5 (tcpcat-1.0.1.tar.gz) = 298a6cfa559b3e13ca87fa13fbd8af28 diff --git a/net/tcpcat/pkg-comment b/net/tcpcat/pkg-comment new file mode 100644 index 000000000000..008b0491fd82 --- /dev/null +++ b/net/tcpcat/pkg-comment @@ -0,0 +1 @@ +A simple utility for sending/receiving data over a TCP or a Unix-domain socket diff --git a/net/tcpcat/pkg-descr b/net/tcpcat/pkg-descr new file mode 100644 index 000000000000..dc29abba3785 --- /dev/null +++ b/net/tcpcat/pkg-descr @@ -0,0 +1,17 @@ +From the tcpcat README: + +Tcpcat is a simple program that is like `cat' but it works over tcp streams +to allow you to cat from one host to another. + +The host common way to use this program whould be something like this: +on host a: $ tcpcat -l 93255 | gzip -dc | tar xvf - +on host b: $ tcpcat -h hosta:93255 file.tar.gz + +Another good use for this program is debugging network stuff. When debugging +a newtork client or server you can pipe the output of tcpcat to a hex dump +(I recomend xxd which comes with vim). Also it can act as a crude telnet server +when invoded with --listen, --input, and --output, this mode is quite useful +for network program debugging as well. + +Author: Angus Mackay <amackay@gusnet.cx> +WWW: http://www.gusnet.cx/proj/tcpcat/ diff --git a/net/tcpcat/pkg-plist b/net/tcpcat/pkg-plist new file mode 100644 index 000000000000..429dba6bcf12 --- /dev/null +++ b/net/tcpcat/pkg-plist @@ -0,0 +1 @@ +bin/tcpcat |