summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2018-03-08 19:08:01 +0000
committerKurt Jaeger <pi@FreeBSD.org>2018-03-08 19:08:01 +0000
commit6be28a638fb40f57541526491d9644826c5602ac (patch)
tree42d3bde162fdb59e57e07ea0278b250f53496afd
parentdevel/libisofs: Add the patch to fix xorriso -hfsplus option bug (diff)
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>
-rw-r--r--net/Makefile1
-rw-r--r--net/viamillipede/Makefile25
-rw-r--r--net/viamillipede/distinfo3
-rw-r--r--net/viamillipede/pkg-descr11
4 files changed, 40 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile
index cadf1cdd1724..7d8ec39a3729 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -1446,6 +1446,7 @@
SUBDIR += vblade
SUBDIR += vde
SUBDIR += vde2
+ SUBDIR += viamillipede
SUBDIR += vinagre
SUBDIR += vino
SUBDIR += vmware-vsphere-cli
diff --git a/net/viamillipede/Makefile b/net/viamillipede/Makefile
new file mode 100644
index 000000000000..56f538f4d6b8
--- /dev/null
+++ b/net/viamillipede/Makefile
@@ -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>
diff --git a/net/viamillipede/distinfo b/net/viamillipede/distinfo
new file mode 100644
index 000000000000..db4f9f48667f
--- /dev/null
+++ b/net/viamillipede/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1520422739
+SHA256 (agokhale-viamillipede-v0.7_GH0.tar.gz) = f69f932312e4ad295483d216016afc36bab24bcfcc76c2d4f2a3d4ebfd40a4ac
+SIZE (agokhale-viamillipede-v0.7_GH0.tar.gz) = 28281
diff --git a/net/viamillipede/pkg-descr b/net/viamillipede/pkg-descr
new file mode 100644
index 000000000000..1c1723057121
--- /dev/null
+++ b/net/viamillipede/pkg-descr
@@ -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