From 3b39b845de7aaa2c2bf89e84f4ea00c6d362cee0 Mon Sep 17 00:00:00 2001 From: Vladislav Yarmak Date: Tue, 27 Jun 2023 00:03:01 +0300 Subject: [PATCH] improve wording --- README.md | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4283b8..0d6bf63 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ Usage of /home/user/go/bin/dumbproxy: -disable-http2 disable HTTP2 -ip-hints value - a comma-separated list of addresses to use on dial attempts. Example: "10.0.0.1,fe80::2,0.0.0.0,::" + a comma-separated list of source addresses to use on dial attempts. Example: "10.0.0.1,fe80::2,0.0.0.0,::" -key string key for TLS certificate -list-ciphers diff --git a/main.go b/main.go index feddd5f..4084690 100644 --- a/main.go +++ b/main.go @@ -103,7 +103,7 @@ func parse_args() CLIArgs { args.proxy = append(args.proxy, p) return nil }) - flag.Func("ip-hints", "a comma-separated list of addresses to use on dial attempts. Example: \"10.0.0.1,fe80::2,0.0.0.0,::\"", func(p string) error { + flag.Func("ip-hints", "a comma-separated list of source addresses to use on dial attempts. Example: \"10.0.0.1,fe80::2,0.0.0.0,::\"", func(p string) error { list, err := parseIPList(p) if err != nil { return err