From 9ad24e5a9670678f4c5180f25bcfb71b9377ff06 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Thu, 30 Jun 2022 16:07:09 -0500 Subject: [PATCH] Correct copy-and-paste of UDP to TCP --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 8fc4653..f22be0b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,11 +23,11 @@ async fn main() -> Result<(), BoxedError> { let mut opts = Options::new(); opts.reqopt("l", "local-port", - "The local port to which udpproxy should bind to", + "The local port to which tcpproxy should bind to", "LOCAL_PORT"); opts.reqopt("r", "remote-port", - "The remote port to which UDP packets should be forwarded", + "The remote port to which TCP packets should be forwarded", "REMOTE_PORT"); opts.reqopt("h", "host",