From 53a2e883f577a8a2c13466b0a7080c68595d9d14 Mon Sep 17 00:00:00 2001 From: xvzc Date: Mon, 5 Aug 2024 17:07:53 +0900 Subject: [PATCH] update readme --- readme.md | 2 ++ readme_ja.md | 2 ++ readme_ko.md | 2 ++ readme_ru.md | 2 ++ readme_zh-cn.md | 2 ++ util/config.go | 2 +- 6 files changed, 11 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index c2038bb..ad209a8 100644 --- a/readme.md +++ b/readme.md @@ -70,6 +70,8 @@ Usage: spoof-dpi [options...] bypass DPI only on packets matching this regex pattern -port int port (default 8080) + -system-proxy + enable system-wide proxy (default true) -timeout int timeout in milliseconds. no timeout when not given -url value diff --git a/readme_ja.md b/readme_ja.md index 07c92c1..c26b1da 100644 --- a/readme_ja.md +++ b/readme_ja.md @@ -67,6 +67,8 @@ Usage: spoof-dpi [options...] bypass DPI only on packets matching this regex pattern -port int port (default 8080) + -system-proxy + enable system-wide proxy (default true) -timeout int timeout in milliseconds. no timeout when not given -url value diff --git a/readme_ko.md b/readme_ko.md index d2f4820..2965d4a 100644 --- a/readme_ko.md +++ b/readme_ko.md @@ -67,6 +67,8 @@ Usage: spoof-dpi [options...] bypass DPI only on packets matching this regex pattern -port int port (default 8080) + -system-proxy + enable system-wide proxy (default true) -timeout int timeout in milliseconds. no timeout when not given -url value diff --git a/readme_ru.md b/readme_ru.md index edd57fa..956e499 100644 --- a/readme_ru.md +++ b/readme_ru.md @@ -70,6 +70,8 @@ curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bas bypass DPI only on packets matching this regex pattern -port int port (default 8080) + -system-proxy + enable system-wide proxy (default true) -timeout int timeout in milliseconds. no timeout when not given -url value diff --git a/readme_zh-cn.md b/readme_zh-cn.md index 91ac2ee..bfd3797 100644 --- a/readme_zh-cn.md +++ b/readme_zh-cn.md @@ -73,6 +73,8 @@ Usage: spoof-dpi [options...] bypass DPI only on packets matching this regex pattern -port int port (default 8080) + -system-proxy + enable system-wide proxy (default true) -timeout int timeout in milliseconds. no timeout when not given -url value diff --git a/util/config.go b/util/config.go index a860589..937e504 100644 --- a/util/config.go +++ b/util/config.go @@ -19,7 +19,7 @@ type Config struct { EnableDoh *bool Debug *bool NoBanner *bool - SystemProxy *bool + SystemProxy *bool Timeout *int AllowedPattern *regexp.Regexp AllowedUrls *regexp.Regexp