mirror of
https://git.freebsd.org/ports.git
synced 2025-05-23 04:03:14 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
11 lines
389 B
Text
11 lines
389 B
Text
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 between 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 doesn't do (yet):
|
|
- Doesn't limit number of concurrent connections
|