An asynchronous Windows named pipe server that forwards connections to given TCP server.
Pre-built binaries can be found in Releases.
- Command Prompt:
pipetcp <PIPE-PATH> <SERVER-HOST> <SERVER-PORT>
- PowerShell:
.\pipetcp <PIPE-PATH> <SERVER-HOST> <SERVER-PORT>
Example:
-
pipetcp \\.\PIPE\LOCAL\Dbg1 192.168.34.56 17103
Connect to the TCP server at
192.168.34.56:17103
, open a pipe server at\\.\PIPE\LOCAL\Dbg
, and bridge the pipe client and the TCP server.
- Install Mingw-w64. Also install
make
if you are on Windows. - Run
make
.
(TODO)