Changes default value for the system-wide proxy toggle to true

This commit is contained in:
BuzzBuzzards 2024-08-05 10:49:02 +03:00 committed by GitHub
parent a63da9d0fe
commit 467a5f32e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ func ParseArgs() {
config.EnableDoh = flag.Bool("enable-doh", false, "enable 'dns over https'")
config.Debug = flag.Bool("debug", false, "enable debug output")
config.NoBanner = flag.Bool("no-banner", false, "disable banner")
config.SystemProxy = flag.Bool("system-proxy", false, "enable system-wide proxy")
config.SystemProxy = flag.Bool("system-proxy", true, "enable system-wide proxy")
config.Timeout = flag.Int("timeout", 0, "timeout in milliseconds. no timeout when not given")
config.WindowSize = flag.Int("window-size", 0, `chunk size, in number of bytes, for fragmented client hello,
try lower values if the default value doesn't bypass the DPI;