1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

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>
This commit is contained in:
Kurt Jaeger 2018-03-08 19:08:01 +00:00
parent b65874131c
commit 6be28a638f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=463913
4 changed files with 40 additions and 0 deletions

View File

@ -1446,6 +1446,7 @@
SUBDIR += vblade
SUBDIR += vde
SUBDIR += vde2
SUBDIR += viamillipede
SUBDIR += vinagre
SUBDIR += vino
SUBDIR += vmware-vsphere-cli

25
net/viamillipede/Makefile Normal file
View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1520422739
SHA256 (agokhale-viamillipede-v0.7_GH0.tar.gz) = f69f932312e4ad295483d216016afc36bab24bcfcc76c2d4f2a3d4ebfd40a4ac
SIZE (agokhale-viamillipede-v0.7_GH0.tar.gz) = 28281

View File

@ -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