Add port net/zniper:

Zniper displays active TCP connections seen by the selected interface.
The spotted connections can be killed by injecting RST packets into the
stream.

WWW: http://www.signedness.org/tools/
Author: Claes M. Nyberg <md0claes@mdstud.chalmers.se>
This commit is contained in:
Andrew Pantyukhin 2007-04-08 18:05:08 +00:00
parent e23f270fd3
commit 00946f47bf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=189503
4 changed files with 38 additions and 0 deletions

View File

@ -939,6 +939,7 @@
SUBDIR += zebra
SUBDIR += zebra-server
SUBDIR += zillion
SUBDIR += zniper
SUBDIR += zsync
SUBDIR += ztelnet

28
net/zniper/Makefile Normal file
View File

@ -0,0 +1,28 @@
# New ports collection makefile for: zniper
# Date created: 8 April 2007
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= zniper
PORTVERSION= 1.0
CATEGORIES= net
MASTER_SITES= CENKES
# Unversioned distfile available from:
# http://www.signedness.org/tools/zniper.tgz
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Display and reset active TCP connections
WRKSRC= ${WRKDIR}/${PORTNAME}
MAKE_ARGS= CFLAGS="${CFLAGS}" CC="${CC}"
ALL_TARGET= fbsd_x86
PLIST_FILES= bin/${PORTNAME}
MAN1= ${PORTNAME}.1
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
@${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1/
.include <bsd.port.mk>

3
net/zniper/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (zniper-1.0.tar.gz) = d388de20580e4308052e5cf43dd3fe02
SHA256 (zniper-1.0.tar.gz) = 317b115f0060252706e151936603b344119f0a547816d4bbf19d3808b8823e3f
SIZE (zniper-1.0.tar.gz) = 20324

6
net/zniper/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
Zniper displays active TCP connections seen by the selected interface.
The spotted connections can be killed by injecting RST packets into the
stream.
WWW: http://www.signedness.org/tools/
Author: Claes M. Nyberg <md0claes@mdstud.chalmers.se>