mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
b2bc002097
A connection forwarder that converts Unix sockets into TCP sockets. Compiles on both 4.x and -CURRENT PR: ports/47667 Submitted by: Michael L. Hostbaek <mich@freebsdcluster.org>
18 lines
527 B
Plaintext
18 lines
527 B
Plaintext
Aims:
|
|
- To listen on a local UNIX socket and tunnel any incoming connections and
|
|
traffic to a (remote) IP address/port
|
|
|
|
What it does:
|
|
- Tunnels all traffic betweeb a (remote) address/port and a local UNIX socket
|
|
- Does NOT use fork() (single process model)
|
|
- Does use O_NONBLOCK , should be no case of blocking
|
|
|
|
What it doesnt do (yet):
|
|
- Doesnt limit number of concurent connections
|
|
|
|
WWW: http://ahriman.bucharest.roedu.net/unix2tcp/
|
|
AUTHOR: <dizzy@roedu.net>
|
|
|
|
- Michael L. Hostbaek
|
|
mich@freebsdcluster.org
|