From 1b5e276457bd97e8c69459bfb6dfcbac1255d779 Mon Sep 17 00:00:00 2001 From: Dan Podeanu Date: Tue, 10 Oct 2023 03:10:41 +0800 Subject: [PATCH] --ignore-errors is now default, document it --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e66d22d..7ff15dc 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,7 @@ or ``` ./udp-redirect \ --listen-port 51821 \ - --connect-host example.endpoint.net --connect-port 51822 \ - --ignore-errors + --connect-host example.endpoint.net --connect-port 51822 ``` ``` @@ -37,8 +36,7 @@ or --connect-host example.endpoint.net --connect-port 51822 \ --connect-address-strict \ --send-interface utun5 \ - --listen-sender-address 192.168.1.1 --listen-sender-port 51820 \ - --ignore-errors + --listen-sender-address 192.168.1.1 --listen-sender-port 51820 ``` ```mermaid @@ -109,4 +107,5 @@ Both must be specified; listener drops packets if they do not arrive from this a | Argument | Parameters | Req/Opt | Description | | --- | --- | --- | --- | -| ```--ignore-errors``` | | *optional* | Ignore most receive or send errors (host / network unreachable, etc.) instead of exiting. | +| ```--ignore-errors``` | | *optional* | Ignore most receive or send errors (host / network unreachable, etc.) instead of exiting. (default) | +| ```--stop-errors``` | | *optional* | Stop on most receive or send errors (host / network unreachable, etc.) |