Xender 使用哪个 API/method 来绕过 Wifi 安全

Which API/method does Xender use to bypass Wifi Security

我很惊讶地看到 Xender 如何绕过所有与 WIFI 相关的安全检查,并且可以轻松连接到任何其他具有 Xender 运行 的设备,然后传输文件。在 Android 中,通常我们创建一个热点,然后其他人加入该热点,但 Xender 似乎有自己的方式连接到其他设备(与传统方法基本相同)。是WIFI直连还是其他?我也想这样做。任何人都可以对此有所了解。提前致谢!

这是点对点连接。一部手机充当 server,另一部手机充当 client。而且,要创建连接,我们必须连接动态创建的两个移动设备的 "sockets"。 一旦这些套接字连接起来,我们就可以以字节流的形式发送数据,在 Wifi-Direct 的情况下,速度非常快。

The Wi-Fi peer-to-peer (P2P) APIs allow applications to connect to nearby devices without needing to connect to a network or hotspot . Wi-Fi P2P allows your application to quickly find and interact with nearby devices, at a range beyond the capabilities of Bluetooth.

在 Android 实施 Wifi-Direct 的情况下,不可能有多个服务器。参见Android's reference。它说:

A p2p group consists of a single group owner and one or more clients. In the case of a group with only two devices, one will be the group owner and the other will be a group client

可以找到连接参考指南here