1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

- Allow blasting 10000 blocks

- While there, nuke pkg-plist

PR:		ports/61900
Submitted by:	Radim Kolar <hsn@netmag.cz>
This commit is contained in:
Pav Lucistnik 2004-01-25 19:04:24 +00:00
parent fd4da51265
commit fd6f242bc4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=99110
3 changed files with 4 additions and 2 deletions

View File

@ -8,12 +8,15 @@
PORTNAME= tcpblast
PORTVERSION= 1.1
PORTREVISION= 1
CATEGORIES= benchmarks net ipv6
DISTFILES= # none
MAINTAINER= ports@FreeBSD.org
COMMENT= Measures the throughput of a tcp connection
PLIST_FILES= bin/tcpblast
WRKSRC= ${WRKDIR}/src
do-extract:

View File

@ -1 +0,0 @@
bin/tcpblast

View File

@ -65,7 +65,7 @@ int argc; char **argv;
}
nblocks = atoi(argv[1]);
if (nblocks<=1 || nblocks>=10000) {
if (nblocks<=1 || nblocks>10000) {
fprintf(stderr, "tcpblast: 1 < nblocks <= 10000 \n");
exit(1);
}