Date: Tue, 23 Jul 2013 21:16:10 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323552 - in head/net: . owamp Message-ID: <201307232116.r6NLGANv066973@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Tue Jul 23 21:16:10 2013 New Revision: 323552 URL: http://svnweb.freebsd.org/changeset/ports/323552 Log: OWAMP is a command line client application and a policy daemon used to determine one way latencies between hosts. It is an implementation of the OWAMP protocol as defined by http://www.rfc-editor.org/rfc/rfc4656.txt. (When referring to the protocol within this document, "OWAMP" will be in italicized. In all other instances, "OWAMP" will be referring to this implementation.) With roundtrip-based measurements, it is hard to isolate the direction in which congestion is experienced. One-way measurements solve this problem and make the direction of congestion immediately apparent. Since traffic can be asymmetric at many sites that are primarily producers or consumers of data, this allows for more informative measurements. One-way measurements allow the user to better isolate the effects of specific parts of a network on the treatment of traffic. WWW: http://www.internet2.edu/performance/owamp/ PR: ports/180594 Submitted by: Kurt Jaeger <fbsd-ports@opsec.eu> Added: head/net/owamp/ head/net/owamp/Makefile (contents, props changed) head/net/owamp/distinfo (contents, props changed) head/net/owamp/pkg-descr (contents, props changed) head/net/owamp/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Jul 23 21:02:49 2013 (r323551) +++ head/net/Makefile Tue Jul 23 21:16:10 2013 (r323552) @@ -499,6 +499,7 @@ SUBDIR += osrtspproxy SUBDIR += ossp-sa SUBDIR += ostinato + SUBDIR += owamp SUBDIR += owncloud-csync SUBDIR += p5-AddressBook SUBDIR += p5-Amazon-SQS-Simple Added: head/net/owamp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/owamp/Makefile Tue Jul 23 21:16:10 2013 (r323552) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= owamp +PORTVERSION= 3.3 +CATEGORIES= net +MASTER_SITES= http://software.internet2.edu/sources/owamp/ + +MAINTAINER= fbsd-ports@opsec.eu +COMMENT= Implementation of the One-Way Active Measurement Protocol + +LICENSE= AL2 + +GNU_CONFIGURE= yes + +MAN1= aespasswd.1 owfetch.1 owping.1 owstats.1 owup.1 \ + pfstore.1 powstream.1 +MAN5= owampd.conf.5 owampd.limits.5 owampd.pfs.5 +MAN8= owampd.8 + +.include <bsd.port.mk> Added: head/net/owamp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/owamp/distinfo Tue Jul 23 21:16:10 2013 (r323552) @@ -0,0 +1,2 @@ +SHA256 (owamp-3.3.tar.gz) = 784980489b25939857e3a98a1d53ad15889f6141e0f68414dcbd2f67b5aacf3b +SIZE (owamp-3.3.tar.gz) = 811975 Added: head/net/owamp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/owamp/pkg-descr Tue Jul 23 21:16:10 2013 (r323552) @@ -0,0 +1,17 @@ +OWAMP is a command line client application and a policy daemon used +to determine one way latencies between hosts. It is an implementation +of the OWAMP protocol as defined by +http://www.rfc-editor.org/rfc/rfc4656.txt. (When referring to the +protocol within this document, "OWAMP" will be in italicized. In +all other instances, "OWAMP" will be referring to this implementation.) + +With roundtrip-based measurements, it is hard to isolate the direction +in which congestion is experienced. One-way measurements solve this +problem and make the direction of congestion immediately apparent. +Since traffic can be asymmetric at many sites that are primarily +producers or consumers of data, this allows for more informative +measurements. One-way measurements allow the user to better isolate +the effects of specific parts of a network on the treatment of +traffic. + +WWW: http://www.internet2.edu/performance/owamp/ Added: head/net/owamp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/owamp/pkg-plist Tue Jul 23 21:16:10 2013 (r323552) @@ -0,0 +1,31 @@ +bin/aespasswd +bin/owampd +bin/owfetch +bin/owping +bin/owstats +bin/owtvec +bin/owup +bin/pfstore +bin/powstream +include/I2util/Pthread.h +include/I2util/addr.h +include/I2util/conf.h +include/I2util/errlog.h +include/I2util/errlogimmediate.h +include/I2util/errlogsyslog.h +include/I2util/hex.h +include/I2util/hmac-sha1.h +include/I2util/io.h +include/I2util/mach_dep.h +include/I2util/md5.h +include/I2util/pbkdf2.h +include/I2util/random.h +include/I2util/readpassphrase.h +include/I2util/saddr.h +include/I2util/sha1.h +include/I2util/sha1P.h +include/I2util/table.h +include/I2util/util.h +lib/libI2util.a +lib/libowamp.a +@dirrm include/I2util
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307232116.r6NLGANv066973>