mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-04-24 15:56:03 +00:00
minor changes
This commit is contained in:
parent
ff9c258fbd
commit
3720c41a6b
1 changed files with 6 additions and 1 deletions
|
@ -87,7 +87,12 @@ impl SocksProxyImpl {
|
||||||
let credentials = &self.credentials;
|
let credentials = &self.credentials;
|
||||||
// Providing unassigned methods is supposed to bypass China's GFW.
|
// Providing unassigned methods is supposed to bypass China's GFW.
|
||||||
// For details, refer to https://github.com/blechschmidt/tun2proxy/issues/35.
|
// For details, refer to https://github.com/blechschmidt/tun2proxy/issues/35.
|
||||||
let mut methods = vec![AuthMethod::NoAuth, AuthMethod::from(4_u8), AuthMethod::from(100_u8)];
|
#[rustfmt::skip]
|
||||||
|
let mut methods = vec![
|
||||||
|
AuthMethod::NoAuth,
|
||||||
|
AuthMethod::from(4_u8),
|
||||||
|
AuthMethod::from(100_u8),
|
||||||
|
];
|
||||||
if credentials.is_some() {
|
if credentials.is_some() {
|
||||||
methods.push(AuthMethod::UserPass);
|
methods.push(AuthMethod::UserPass);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue