我正在尝试编写一个可以连接到我的 VPN 服务器的应用程序pptp protocol
,因为我正在研究我发现android.net.vpnservice
我可以连接,但是当我阅读一些文档时,不清楚如何连接到VPN(没有用于设置用户名或密码的 API,也没有用于设置我的 VPN 类型的 API l2tp,pptp
(
这是我找到的一些代码:
// Create a new interface using the builder and save the parameters.
mInterface = builder.setSession(mServerAddress)
.setConfigureIntent(mConfigureIntent)
.establish();
mParameters = parameters;