File tree 3 files changed +7
-12
lines changed
3 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,9 @@ constraints the following default ones will take effect:
55
55
- The third attempt will connect to a Wireguard relay over IPv6 (if IPv6 is configured on the host) on a random port
56
56
- The remaining attempts will alternate between Wireguard and OpenVPN
57
57
- The fourth attempt will connect to an OpenVPN relay over TCP on port 443
58
- - The fifth attempt will connect to a Wireguard relay on a random port using Shadowsocks for obfuscation
59
- - The sixth attempt will connect to a Wireguard relay on a random port using [ UDP2TCP obfuscation] ( https://github.com/mullvad/udp-over-tcp )
60
- - The seventh attempt will connect to a Wireguard relay over IPv6 on a random port using UDP2TCP obfuscation (if IPv6 is configured on the host)
61
- - The eighth attempt will connect to an OpenVPN relay over a bridge on a random port
58
+ - The fifth attempt will connect to a Wireguard relay on a random port using [ UDP2TCP obfuscation] ( https://github.com/mullvad/udp-over-tcp )
59
+ - The sixth attempt will connect to a Wireguard relay over IPv6 on a random port using UDP2TCP obfuscation (if IPv6 is configured on the host)
60
+ - The seventh attempt will connect to an OpenVPN relay over a bridge on a random port
62
61
63
62
If no tunnel has been established after exhausting this list of attempts, the relay selector will
64
63
loop back to the first default constraint and continue its search from there.
Original file line number Diff line number Diff line change @@ -74,16 +74,14 @@ pub static RETRY_ORDER: Lazy<Vec<RelayQuery>> = Lazy::new(|| {
74
74
. port( 443 )
75
75
. build( ) ,
76
76
// 5
77
- RelayQueryBuilder :: new( ) . wireguard( ) . shadowsocks( ) . build( ) ,
78
- // 6
79
77
RelayQueryBuilder :: new( ) . wireguard( ) . udp2tcp( ) . build( ) ,
80
- // 7
78
+ // 6
81
79
RelayQueryBuilder :: new( )
82
80
. wireguard( )
83
81
. udp2tcp( )
84
82
. ip_version( IpVersion :: V6 )
85
83
. build( ) ,
86
- // 8
84
+ // 7
87
85
RelayQueryBuilder :: new( )
88
86
. openvpn( )
89
87
. transport_protocol( TransportProtocol :: Tcp )
Original file line number Diff line number Diff line change @@ -254,16 +254,14 @@ fn assert_retry_order() {
254
254
. port( 443 )
255
255
. build( ) ,
256
256
// 5
257
- RelayQueryBuilder :: new( ) . wireguard( ) . shadowsocks( ) . build( ) ,
258
- // 6
259
257
RelayQueryBuilder :: new( ) . wireguard( ) . udp2tcp( ) . build( ) ,
260
- // 7
258
+ // 6
261
259
RelayQueryBuilder :: new( )
262
260
. wireguard( )
263
261
. udp2tcp( )
264
262
. ip_version( IpVersion :: V6 )
265
263
. build( ) ,
266
- // 8
264
+ // 7
267
265
RelayQueryBuilder :: new( )
268
266
. openvpn( )
269
267
. transport_protocol( TransportProtocol :: Tcp )
You can’t perform that action at this time.
0 commit comments