From 166c592766acd0822e657ee8fd5ada9a9d8bce1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Thu, 15 Dec 2022 09:54:07 +0000 Subject: [PATCH] Defaulting to 'false' value for 'send_anonymously' in socks5 config if not present --- clients/socks5/src/client/config/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/clients/socks5/src/client/config/mod.rs b/clients/socks5/src/client/config/mod.rs index 97372e4c86..cda73334d3 100644 --- a/clients/socks5/src/client/config/mod.rs +++ b/clients/socks5/src/client/config/mod.rs @@ -143,6 +143,7 @@ pub struct Socks5 { /// slower and consume nearly double the bandwidth as it will require sending reply SURBs. /// /// Note that some service providers might not support this. + #[serde(default)] send_anonymously: bool, }