Commit 24c6aca8 authored by Max Lv's avatar Max Lv

Add remote DNS to route

parent 293e9b5d
...@@ -251,6 +251,7 @@ class ShadowsocksVpnService extends VpnService with BaseService { ...@@ -251,6 +251,7 @@ class ShadowsocksVpnService extends VpnService with BaseService {
val subnet = Subnet.fromString(cidr) val subnet = Subnet.fromString(cidr)
builder.addRoute(subnet.address.getHostAddress, subnet.prefixSize) builder.addRoute(subnet.address.getHostAddress, subnet.prefixSize)
}) })
builder.addRoute(profile.remoteDns, 32)
} }
conn = builder.establish() conn = builder.establish()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment