Skip to content

Commit 6419bca

Browse files
committed
Revert "Add Shadowsocks to retry order"
This reverts commit e75960b.
1 parent ed3064f commit 6419bca

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

docs/relay-selector.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,9 @@ constraints the following default ones will take effect:
5555
- The third attempt will connect to a Wireguard relay over IPv6 (if IPv6 is configured on the host) on a random port
5656
- The remaining attempts will alternate between Wireguard and OpenVPN
5757
- 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
6261

6362
If no tunnel has been established after exhausting this list of attempts, the relay selector will
6463
loop back to the first default constraint and continue its search from there.

mullvad-relay-selector/src/relay_selector/mod.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,14 @@ pub static RETRY_ORDER: Lazy<Vec<RelayQuery>> = Lazy::new(|| {
7474
.port(443)
7575
.build(),
7676
// 5
77-
RelayQueryBuilder::new().wireguard().shadowsocks().build(),
78-
// 6
7977
RelayQueryBuilder::new().wireguard().udp2tcp().build(),
80-
// 7
78+
// 6
8179
RelayQueryBuilder::new()
8280
.wireguard()
8381
.udp2tcp()
8482
.ip_version(IpVersion::V6)
8583
.build(),
86-
// 8
84+
// 7
8785
RelayQueryBuilder::new()
8886
.openvpn()
8987
.transport_protocol(TransportProtocol::Tcp)

mullvad-relay-selector/tests/relay_selector.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -254,16 +254,14 @@ fn assert_retry_order() {
254254
.port(443)
255255
.build(),
256256
// 5
257-
RelayQueryBuilder::new().wireguard().shadowsocks().build(),
258-
// 6
259257
RelayQueryBuilder::new().wireguard().udp2tcp().build(),
260-
// 7
258+
// 6
261259
RelayQueryBuilder::new()
262260
.wireguard()
263261
.udp2tcp()
264262
.ip_version(IpVersion::V6)
265263
.build(),
266-
// 8
264+
// 7
267265
RelayQueryBuilder::new()
268266
.openvpn()
269267
.transport_protocol(TransportProtocol::Tcp)

0 commit comments

Comments
 (0)