From ffaebef46df45de647857296984b1357a1b5c685 Mon Sep 17 00:00:00 2001 From: arloor Date: Sun, 17 Nov 2024 19:07:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3=E4=BB=A5?= =?UTF-8?q?=E5=BB=BA=E8=AE=AE=E5=B0=86'--never-ask-for-auth'=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E4=B8=BAtrue=E4=BB=A5=E9=99=8D=E4=BD=8E=E5=97=85?= =?UTF-8?q?=E6=8E=A2=E9=A3=8E=E9=99=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- rust_http_proxy/src/config.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 70259fb..e2f8b40 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ Options: 可以多次指定,也可以不指定 --never-ask-for-auth if enable, never send '407 Proxy Authentication Required' to client。 - 不建议开启,否则有被嗅探的风险 + 建议设置为true,否则有被嗅探的风险 -o, --over-tls if enable, proxy server will listen on https --hostname diff --git a/rust_http_proxy/src/config.rs b/rust_http_proxy/src/config.rs index 535d97f..3c95008 100644 --- a/rust_http_proxy/src/config.rs +++ b/rust_http_proxy/src/config.rs @@ -72,7 +72,7 @@ pub struct Param { #[arg( long, help = "if enable, never send '407 Proxy Authentication Required' to client。\n\ - 不建议开启,否则有被嗅探的风险" + 建议设置为true,否则有被嗅探的风险" )] never_ask_for_auth: bool, #[arg(short, long, help = "if enable, proxy server will listen on https")]