1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: Fix a minor grammar nit
Forwarded: https://github.com/rofl0r/microsocks/pull/87
Author: Peter Pentchev <roam@ringlet.net>
Last-Update: 2025-02-14
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@
- option -q disables logging.
- option -b specifies which ip outgoing connections are bound to
-- option -w allows to specify a comma-separated whitelist of ip addresses,
+- option -w specifies a comma-separated whitelist of ip addresses,
that may use the proxy without user/pass authentication.
e.g. -w 127.0.0.1,192.168.1.1.1,::1 or just -w 10.0.0.1
to allow access ONLY to those ips, choose an impossible to guess user/pw combo.
--- a/sockssrv.c
+++ b/sockssrv.c
@@ -388,7 +388,7 @@
"by default listenip is 0.0.0.0 and port 1080.\n\n"
"option -q disables logging.\n"
"option -b specifies which ip outgoing connections are bound to\n"
- "option -w allows to specify a comma-separated whitelist of ip addresses,\n"
+ "option -w specifies a comma-separated whitelist of ip addresses,\n"
" that may use the proxy without user/pass authentication.\n"
" e.g. -w 127.0.0.1,192.168.1.1.1,::1 or just -w 10.0.0.1\n"
" to allow access ONLY to those ips, choose an impossible to guess user/pw combo.\n"
|