We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5f010 commit 5171e81Copy full SHA for 5171e81
src/ProtonVPN.Vpn/OpenVpn/Arguments/BaseRouteArgument.cs
@@ -40,16 +40,6 @@ public IEnumerator<string> GetEnumerator()
40
yield return "--pull-filter ignore \"redirect-gateway\"";
41
yield return "--route 0.0.0.0 0.0.0.0 vpn_gateway 32000";
42
break;
43
- case SplitTunnelMode.Block:
44
- yield return "--pull-filter ignore \"redirect-gateway\"";
45
- yield return "--route 0.0.0.0 0.0.0.0 net_gateway 32000";
46
- yield return "--route 0.0.0.0 0.0.0.0 vpn_gateway";
47
- break;
48
- default:
49
- yield return "--pull-filter ignore \"redirect-gateway def1\"";
50
- yield return "--redirect-gateway";
51
- yield return "--route 0.0.0.0 0.0.0.0 net_gateway";
52
53
}
54
55
0 commit comments