1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Add tmetric, a raw tool to aid in determining available bandwidth between

two hosts.

PR:		19017
Submitted by:	Yen-Ming Lee <leeym@bsd.ce.ntu.edu.tw>
This commit is contained in:
Will Andrews 2000-06-05 13:25:37 +00:00
parent e85bfdadae
commit a6158c2974
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=29224
7 changed files with 51 additions and 0 deletions

View File

@ -14,6 +14,7 @@
SUBDIR += postmark
SUBDIR += rawio
SUBDIR += tcpblast
SUBDIR += tmetric
SUBDIR += xengine
.include <bsd.port.subdir.mk>

View File

@ -0,0 +1,18 @@
# New ports collection makefile for: tmetric
# Date created: June 5th 2000
# Whom: Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
#
# $FreeBSD$
#
PORTNAME= tmetric
PORTVERSION= v0.2
CATEGORIES= benchmarks net
MASTER_SITES= http://netgraft.com/projects/tmetric/
MAINTAINER= leeym@cae.ce.ntu.edu.tw
HAS_CONFIGURE= yes
MAN8= tmetric.8
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (tmetric-v0.2.tar.gz) = 79dbfc3b9c98a6cab08e5074121e2684

View File

@ -0,0 +1,17 @@
--- Makefile.in.orig Thu Apr 20 09:34:21 2000
+++ Makefile.in Mon Jun 5 20:54:52 2000
@@ -10,11 +10,13 @@
MANDIR = /usr/local/man/man8
MANPAGE = tmetric.8
+all: $(OUTPUT)
+
$(OUTPUT): $(OBJ)
$(CC) $(LIBS) $(LDFLAGS) $(OBJ) -o $(OUTPUT)
install: $(OUTPUT)
- $(INSTALL) $(OUTPUT) $(BINDIR)
+ $(INSTALL) -m 4755 $(OUTPUT) $(BINDIR)
$(INSTALL) $(MANPAGE) $(MANDIR)
clean:

View File

@ -0,0 +1 @@
Tmetric is a raw tool to aid in finding available bandwidth on a given pipe

View File

@ -0,0 +1,12 @@
Tmetric is a (still raw) tool to aid in determining the available bandwidth
from one host to another. It is inspired by the (closed source) pathchar
utility. Please do not assume that this program works exactly like pathchar
does. It only attempts to report the bandwidth between 2 hosts, and not the
bandwidth available at every hop on a route along the way.
I've only tried compiling this on FreeBSD and Linux. There is some strange
behavior if your system has an outdated or limited FPU. My (oldassed) sparc
(this web server), for example, doesn't handle the floating point precision
types correctly for my tests. Oh well.
Michael Bacarella <mbac@nyct.net>

View File

@ -0,0 +1 @@
sbin/tmetric