diff options
author | Arne Schwabe <arne@rfc2549.org> | 2014-01-21 20:37:31 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2014-01-21 20:37:31 +0100 |
commit | b7968faa2a6dac1bd9641309ccf4c9a387bca26c (patch) | |
tree | b73b91ede0a7b3257dda85c056873ceb8ef0db07 /src/de/blinkt/openvpn/VpnProfile.java | |
parent | f3957386eb230ab85fa7d727c96d9ca6fe122ee3 (diff) |
Add to code that allows excluding routes from the VPN
--HG--
extra : rebase_source : 7e20e643cb0949520b92f7ab7b623d6856ea4ef7
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index d580829d..b016fb64 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -305,10 +305,10 @@ public class VpnProfile implements Serializable { String routes = ""; int numroutes = 0; if (mUseDefaultRoute) - routes += "route 0.0.0.0 0.0.0.0\n"; + routes += "route 0.0.0.0 0.0.0.0 vpn_gateway\n"; else for (String route : getCustomRoutes()) { - routes += "route " + route + "\n"; + routes += "route " + route + "vpn_gateway\n"; numroutes++; } |