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 17103Connect 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
makeif you are on Windows. - Run
make.
(TODO)