diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-05-23 23:23:23 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-05-23 23:23:23 +0000 |
commit | c780dd56724df3b67bf683de43b9d446025d85e8 (patch) | |
tree | 72f2fd5b54120f24427092e3d1fa6c9c80a7c3ff | |
parent | Add pathload. (diff) |
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>
Notes
Notes:
svn path=/head/; revision=135999
-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 e3da36b9fccc..66113a764480 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 000000000000..7276fbebd7e7 --- /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 000000000000..5abcd14a9217 --- /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 000000000000..60e104b9d97e --- /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 |