Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/singpolyma/sock2stream
Tunnel a socket over a single datastream (stdin/stdout)
https://github.com/singpolyma/sock2stream
Last synced: 3 months ago
JSON representation
Tunnel a socket over a single datastream (stdin/stdout)
- Host: GitHub
- URL: https://github.com/singpolyma/sock2stream
- Owner: singpolyma
- License: isc
- Created: 2011-12-26T18:03:38.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-15T17:15:11.000Z (over 12 years ago)
- Last Synced: 2024-09-17T08:27:07.686Z (4 months ago)
- Language: Haskell
- Homepage:
- Size: 93.8 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
This is an initial implementation of a socket multiplexer/demultiplexer to tunnel Unix domain sockets over pipes/streams.
The primary envisioned use is to tunnel Unix domain sockets over SSH like so:
> mkfifo /tmp/sockin
> ssh user@host socket2stream -l /path/to/remotesocket < /tmp/sockin | socket2stream -r /path/to/localsocket > /tmp/sockin