Crates.io | tcpproxy-rs |
lib.rs | tcpproxy-rs |
version | 0.7.5 |
source | src |
created_at | 2024-04-07 06:30:50.701172 |
updated_at | 2024-04-07 09:46:20.167244 |
description | Cross-platform asynchronous multi-client TCP proxy; great tokio demo. |
homepage | https://github.com/neosmart/tcpproxy |
repository | https://github.com/neosmart/tcpproxy |
max_upload_size | |
id | 1198809 |
size | 29,016 |
a simple, cross-platform, multi-client TCP proxy for Old-school RS2/JS5
tcpproxy-rs
is a cross-platform, multi-client TCP proxy written in rust, that is designed for those "one-time" tasks where you usually end up spending more time installing a proxy server and setting up the myriad configuration files and options than you do actually using it.
tcpproxy-rs
is completely asynchronous and built on top of the tokio
async runtime. It was written to serve as an example of how bi-directional async networking code using rust futures and an async framework would look and is intentionally kept easy to understand. The code is updated regularly to take advantage of new tokio features and best practices (if/when they change).
tcpproxy-rs
is a command-line application. One instance of tcpproxy-rs
should be started for each remote endpoint you wish to proxy data to/from. All configuration is done via command-line arguments, in keeping with the spirit of this project.
tcpproxy-rs VERSION REMOTE_HOST:PORT [-b BIND_ADDR] [-l LOCAL_PORT]
Options:
-b, --bind BIND_ADDR
The address on which to listen for incoming requests,
defaulting to localhost.
-l, --local-port LOCAL_PORT
The local port to which tcpproxy should bind to
listening for requests, randomly chosen otherwise.
-d, --debug Enables debug mode w/ connection logging.
Where possible, sane defaults for arguments are provided automatically.
tcpproxy-rs
is available via cargo
, the rust package manager. Installation is as follows:
cargo install tcpproxy-rs