tcpshow port.

This commit is contained in:
angelos 1998-07-12 04:46:53 +00:00
parent dd0e64a7c9
commit 49375a58e4
5 changed files with 46 additions and 0 deletions

31
net/tcpshow/Makefile Normal file
View File

@ -0,0 +1,31 @@
# OpenBSD makefile for: tcpshow
# Version required: 1.0
# Date created: July 11 1998
# Whom: Angelos D. Keromytis
#
# $OpenBSD: Makefile,v 1.1.1.1 1998/07/12 04:46:53 angelos Exp $
#
DISTNAME= tcpshow-1.0
CATEGORIES= net security
MASTER_SITES= http://www.cs.berkeley.edu/~daw/mike/
DISTFILES= tcpshow.c tcpshow.1
MAINTAINER= angelos@openbsd.org
NO_WRKSUBDIR= yes
MAN1= tcpshow.1
do-extract:
@${MKDIR} ${WRKDIR}
@${CP} ${DISTDIR}/tcpshow.c ${WRKDIR}
@${CP} ${DISTDIR}/tcpshow.1 ${WRKDIR}
do-build:
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o tcpshow tcpshow.c)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tcpshow ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/tcpshow.1 ${PREFIX}/man/man1
.include <bsd.port.mk>

2
net/tcpshow/files/md5 Normal file
View File

@ -0,0 +1,2 @@
MD5 (tcpshow.c) = c6c187faa57e1c842a73cc4e3c0ad0d8
MD5 (tcpshow.1) = 70021150b1d24b3f0ee6f66c0df673a2

1
net/tcpshow/pkg/COMMENT Normal file
View File

@ -0,0 +1 @@
Decode tcpdump(1) output.

10
net/tcpshow/pkg/DESCR Normal file
View File

@ -0,0 +1,10 @@
tcpshow reads a tcpdump(1) savefile and provides a reasonably complete
decode of Ethernet, IP, ICMP, UDP and TCP headers. Boolean expressions
may also be specified for packet selection. Data within the packets are
displayed in ASCII.
tcpshow's output is simular to Sun Solaris's snoop(1M) command for
network packet capture and inspection.
-- David
(obrien@NUXI.com)

2
net/tcpshow/pkg/PLIST Normal file
View File

@ -0,0 +1,2 @@
bin/tcpshow
man/man1/tcpshow.1