This is a simple TCP stream forwarder 🔄 built for the use with FerrumServe implemented using tokio, futures, and bytes crates in Rust 🦀.
This program forwards data from standard input (stdin) to a specified TCP server and relays the server's responses back to the standard output (stdout).
- Make sure you have Rust and Cargo installed on your system.
- Clone this repository.
- Change to the cloned directory.
- Run cargo build to compile the project.
- Run cargo run <server_address> to start the program, replacing <server_address> with the desired TCP server address (e.g., 127.0.0.1:8080).
Copyright © 2023 Simon Guglberger