diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-05-23 23:23:23 +0000 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-05-23 23:23:23 +0000 |
commit | 2445585e6d425a53bba1259318670d66457486ef (patch) | |
tree | 2c00dcde040501a55ece689c11a3f5c6f1f2f638 /benchmarks | |
parent | 3f36f12faa6f9e028f57dab18931fe1c99cc9924 (diff) | |
download | FreeBSD-ports-2445585e6d425a53bba1259318670d66457486ef.zip FreeBSD-ports-2445585e6d425a53bba1259318670d66457486ef.tar.gz |
Add pathrate.
Pathrate is a tool that can estimate the capacity of network paths. An
important feature of Pathrate is that it is robust to cross traffic effects,
meaning that it can measure the path capacity even when the path is
significantly loaded. This is crucial, since the hardest paths to measure are
the heavily loaded ones.
WWW: http://www.cc.gatech.edu/fac/Constantinos.Dovrolis/pathrate.html
PR: ports/81295
Submitted by: dikshie <dikshie@lapi.itb.ac.id>
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/Makefile | 1 | ||||
-rw-r--r-- | benchmarks/pathrate/Makefile | 30 | ||||
-rw-r--r-- | benchmarks/pathrate/distinfo | 2 | ||||
-rw-r--r-- | benchmarks/pathrate/pkg-descr | 10 |
4 files changed, 43 insertions, 0 deletions
diff --git a/benchmarks/Makefile b/benchmarks/Makefile index e3da36b..66113a7 100644 --- a/benchmarks/Makefile +++ b/benchmarks/Makefile @@ -25,6 +25,7 @@ SUBDIR += nttcp SUBDIR += pathchirp SUBDIR += pathload + SUBDIR += pathrate SUBDIR += pear-Benchmark SUBDIR += pipebench SUBDIR += pnetmark diff --git a/benchmarks/pathrate/Makefile b/benchmarks/pathrate/Makefile new file mode 100644 index 0000000..7276fbe --- /dev/null +++ b/benchmarks/pathrate/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: pathrate +# Date created: 19 May 2005 +# Whom: dikshie <dikshie@lapi.itb.ac.id> +# +# $FreeBSD$ +# + +PORTNAME= pathrate +PORTVERSION= 2.4.0 +CATEGORIES= benchmarks +MASTER_SITES= http://www.cc.gatech.edu/fac/Constantinos.Dovrolis/ +DISTNAME= ${PORTNAME} + +MAINTAINER= dikshie@lapi.itb.ac.id +COMMENT= A measurement tool for capacity estimation of network paths + +GNU_CONFIGURE= yes +USE_GMAKE= yes + +WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} +MAKEFILE= makefile + +PLIST_FILES= bin/pathrate_rcv bin/pathrate_snd + +do-install: +.for f in pathrate_rcv pathrate_snd + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin +.endfor + +.include <bsd.port.mk> diff --git a/benchmarks/pathrate/distinfo b/benchmarks/pathrate/distinfo new file mode 100644 index 0000000..5abcd14 --- /dev/null +++ b/benchmarks/pathrate/distinfo @@ -0,0 +1,2 @@ +MD5 (pathrate.tar.gz) = 977c76c334a2ff3fa434f2b1201d4b9d +SIZE (pathrate.tar.gz) = 69804 diff --git a/benchmarks/pathrate/pkg-descr b/benchmarks/pathrate/pkg-descr new file mode 100644 index 0000000..60e104b --- /dev/null +++ b/benchmarks/pathrate/pkg-descr @@ -0,0 +1,10 @@ +Pathrate is a tool that can estimate the capacity of network paths. An +important feature of Pathrate is that it is robust to cross traffic effects, +meaning that it can measure the path capacity even when the path is +significantly loaded. This is crucial, since the hardest paths to measure are +the heavily loaded ones. + +WWW: http://www.cc.gatech.edu/fac/Constantinos.Dovrolis/pathrate.html + +- dikshie +dikshie@lapi.itb.ac.id |