# stuner dist This directory contains the built binaries: - `client` - `server` ## Server Start the raw TCP server. The listen address is fixed to `0.0.0.0`; pass only the port. ```bash ./server --port 9443 --enc none ``` The `--enc none` flag is required as an explicit acknowledgement that this version has no available transport encryption. Stdio demo mode: ```bash echo "hello" | ./server --stdio ``` ## Client Send POSIX stdin to the server. ```bash echo "hello" | ./client --target-ipv4 127.0.0.1 --port 9443 --enc none ``` The `--enc none` flag is required as an explicit acknowledgement that this version has no available transport encryption. Local pipeline demo mode: ```bash echo "hello" | ./client --demo-pipeline ``` ## Flags Client: ```text --target-ipv4 string target server IPv4 address --port uint16 target server port --enc string transport encryption acknowledgement; pass none --demo-pipeline run local POSIX pipeline demo ``` Server: ```text --port uint16 listening port, bound to 0.0.0.0 --enc string transport encryption acknowledgement; pass none --stdio run stdio demo ```