ucspi-tcp

Tools for building TCP client-server applications with Unix pipes

brewmacoslinux
Try with needOr install directly
Source

About

Tools for building TCP client-server applications

Commands

tcpservertcpclienttcpcatwho@date@finger@http@

Examples

Start a TCP server listening on port 9000 that runs 'cat' for each connection$ tcpserver 0 9000 cat
Connect to a remote TCP server and send/receive data$ tcpclient example.com 80 < request.txt
Create a simple echo server on localhost port 5555$ tcpserver 127.0.0.1 5555 /bin/cat