使用Flutter和Dart创建VPN应用程序是否可行?

4
2个回答

0

0

我在源代码中找到了这段代码,看起来像是PPTP连接。

  /// Use given credentials to connect VPN (ikev2-eap).
  /// This will create a background VPN service.
  static Future<Null> simpleConnect(
      String address, String username, String password) async {
    await _channel.invokeMethod('connect',
        {'address': address, 'username': username, 'password': password});
  }

看起来连接类型是ikev2-eap?我如何更改连接类型? - sajjad sohrabi

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接