Date: Thu, 8 Mar 2018 19:08:01 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463913 - in head/net: . viamillipede Message-ID: <201803081908.w28J81i4012173@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Thu Mar 8 19:08:01 2018 New Revision: 463913 URL: https://svnweb.freebsd.org/changeset/ports/463913 Log: New port: net/viamillipede Parallel TCP transport for pipes Viamillipede is a client and server programm built to improve network pipe transport using multiple TCP sessions. It multiplexes a single network pipe into multiple TCP connections and then terminates the connections into a pipe transparently on another host. It is similar to the simplest mode of remote pipe transparency of Netcat with the parallelism from iperf. WWW: https://github.com/agokhale/viamillipede Submitted by: Ash Gokhale <ash_ports@aeria.net> Reviewed by: eugen, mat, tobik, jpaetzel, Vincent Hoffman-Kazlauskas <vince@unsane.co.uk> Added: head/net/viamillipede/ head/net/viamillipede/Makefile (contents, props changed) head/net/viamillipede/distinfo (contents, props changed) head/net/viamillipede/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Mar 8 18:55:50 2018 (r463912) +++ head/net/Makefile Thu Mar 8 19:08:01 2018 (r463913) @@ -1446,6 +1446,7 @@ SUBDIR += vblade SUBDIR += vde SUBDIR += vde2 + SUBDIR += viamillipede SUBDIR += vinagre SUBDIR += vino SUBDIR += vmware-vsphere-cli Added: head/net/viamillipede/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/viamillipede/Makefile Thu Mar 8 19:08:01 2018 (r463913) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= viamillipede +PORTVERSION= 0.7 +DISTVERSIONPREFIX= v +CATEGORIES= net + +MAINTAINER= ash_ports@aeria.net +COMMENT= Parallel TCP for pipe transport + +LICENSE= BSD3CLAUSE + +USES= uidfix +USE_GITHUB= yes +GH_ACCOUNT= agokhale + +PLIST_FILES= bin/viamillipede man/man1/viamillipede.1.gz + +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1004000 +BROKEN= Needs bsd.prog.mk features from at least 10.4, otherwise referenced /usr/share/mk/bsd.own.mk line 505: MK_DEBUG_FILES can't be set by a user. +.endif + +.include <bsd.port.post.mk> Added: head/net/viamillipede/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/viamillipede/distinfo Thu Mar 8 19:08:01 2018 (r463913) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520422739 +SHA256 (agokhale-viamillipede-v0.7_GH0.tar.gz) = f69f932312e4ad295483d216016afc36bab24bcfcc76c2d4f2a3d4ebfd40a4ac +SIZE (agokhale-viamillipede-v0.7_GH0.tar.gz) = 28281 Added: head/net/viamillipede/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/viamillipede/pkg-descr Thu Mar 8 19:08:01 2018 (r463913) @@ -0,0 +1,11 @@ +Parallel TCP transport for pipes + +Viamillipede is a client and server programm built to improve network +pipe transport using multiple TCP sessions. It multiplexes a single +network pipe into multiple TCP connections and then terminates the +connections into a pipe transparently on another host. + +It is similar to the simplest mode of remote pipe transparency of +Netcat with the parallelism from iperf. + +WWW: https://github.com/agokhale/viamillipede
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803081908.w28J81i4012173>