From owner-svn-ports-head@FreeBSD.ORG Tue Jul 23 21:16:11 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EB69F1C0; Tue, 23 Jul 2013 21:16:11 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CDB0525B6; Tue, 23 Jul 2013 21:16:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6NLGBHV066981; Tue, 23 Jul 2013 21:16:11 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6NLGANv066973; Tue, 23 Jul 2013 21:16:10 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201307232116.r6NLGANv066973@svn.freebsd.org> From: Pawel Pekala Date: Tue, 23 Jul 2013 21:16:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323552 - in head/net: . owamp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jul 2013 21:16:12 -0000 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 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 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