File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ Line wrap the file at 100 chars. Th
43
43
- Make Smart Routing override multihop if both are enabled. To manually set the entry relay,
44
44
explicitly enable the "Direct only" option in the DAITA settings.
45
45
- Update maybenot from 1.1.3 to 2.0.1.
46
- - Test tunnel before ephemeral peer exchange. This is an attempt to fix timeout issues.
47
46
48
47
#### Windows
49
48
- Enable quantum-resistant tunnels by default (when set to ` auto ` ).
49
+ - Test tunnel before ephemeral peer exchange. This is an attempt to fix timeout issues.
50
50
51
51
### Fixed
52
52
- Handle network switching better when using WG over Shadowsocks.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ fn main() {
19
19
// This is useful after updating the WireGuard config, to force a WireGuard handshake. This
20
20
// should reduce the number of PQ timeouts.
21
21
println ! ( "cargo::rustc-check-cfg=cfg(force_wireguard_handshake)" ) ;
22
- if matches ! ( target_os. as_str( ) , "linux" | "macos" | " windows") {
22
+ if target_os. as_str ( ) == " windows" {
23
23
println ! ( "cargo::rustc-cfg=force_wireguard_handshake" ) ;
24
24
}
25
25
}
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ mod mock;
6
6
mod monitor;
7
7
mod pinger;
8
8
9
- pub use check:: { Cancellable , Check } ;
9
+ #[ cfg( any( target_os = "android" , force_wireguard_handshake) ) ]
10
+ pub use check:: Cancellable ;
11
+ pub use check:: Check ;
10
12
pub use error:: Error ;
11
13
pub use monitor:: Monitor ;
You can’t perform that action at this time.
0 commit comments