diff options
author | roam <roam@FreeBSD.org> | 2005-10-29 06:22:46 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2005-10-29 06:22:46 +0800 |
commit | f6a29d8fa3c3e39802b112e01dcc7112629347b7 (patch) | |
tree | 92dda0f1c3b4f2352c3bab09e22045893d9eb566 | |
parent | b1f2e22582fea0cc2168ca6b333a268b1ef3708c (diff) | |
download | freebsd-ports-gnome-f6a29d8fa3c3e39802b112e01dcc7112629347b7.tar.gz freebsd-ports-gnome-f6a29d8fa3c3e39802b112e01dcc7112629347b7.tar.zst freebsd-ports-gnome-f6a29d8fa3c3e39802b112e01dcc7112629347b7.zip |
Add urelay 1.0, an UCSPI connection proxy. When used in conjunction
with tcpserver and tcpclient, it may serve as a TCP proxy with some
additional benefits such as sending a chunk of data at the start of
the connection and "swallowing" a reply.
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/urelay/Makefile | 20 | ||||
-rw-r--r-- | net/urelay/distinfo | 2 | ||||
-rw-r--r-- | net/urelay/pkg-descr | 7 |
4 files changed, 30 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index ee26b4335a3b..3f23c5de91e8 100644 --- a/net/Makefile +++ b/net/Makefile @@ -878,6 +878,7 @@ SUBDIR += unison SUBDIR += unix2tcp SUBDIR += uplog + SUBDIR += urelay SUBDIR += urlendec SUBDIR += utftpd SUBDIR += v6eval diff --git a/net/urelay/Makefile b/net/urelay/Makefile new file mode 100644 index 000000000000..1748d11bf08b --- /dev/null +++ b/net/urelay/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: urelay +# Date created: 28 October 2005 +# Whom: Peter Pentchev <roam@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= urelay +PORTVERSION= 1.0 +CATEGORIES= net +MASTER_SITES= http://devel.ringlet.net/net/urelay/ + +MAINTAINER= roam@FreeBSD.org +COMMENT= An UCSPI-based TCP forwarder + +MAN1= urelay.1 +MANCOMPRESSED= yes +PLIST_FILES= bin/urelay + +.include <bsd.port.mk> diff --git a/net/urelay/distinfo b/net/urelay/distinfo new file mode 100644 index 000000000000..17b40d1575a1 --- /dev/null +++ b/net/urelay/distinfo @@ -0,0 +1,2 @@ +MD5 (urelay-1.0.tar.gz) = 2ea69372963d3cd62bcb218d186a9550 +SIZE (urelay-1.0.tar.gz) = 7143 diff --git a/net/urelay/pkg-descr b/net/urelay/pkg-descr new file mode 100644 index 000000000000..56f320e189f2 --- /dev/null +++ b/net/urelay/pkg-descr @@ -0,0 +1,7 @@ +The urelay tool is a simple connection forwarder which may work with +many different protocols - TCP, Unix sockets, IPX - in general, anything +that has a client or a server supporting Prof. Daniel J. Bernstein's UCSPI +framework - http://cr.yp.to/ucspi.html + +Author: Peter Pentchev <roam@ringlet.net> +WWW: http://devel.ringlet.net/net/urelay/ |