无网络时使用 Websocket TCP 重新连接到未知地址

无网络时使用 Websocket TCP 重新连接到未知地址

我曾经ProcMon.exe观察过当没有互联网时我的应用程序会发生什么。我的应​​用程序electron使用 websocket 连接到位于其他计算机上的后端服务。

仅供参考,websocket 地址的示例是ws://10.5.14.72:8080/Model

据我所知,如果存在代理服务器,来自 websocket 的 HTTP 请求将会通过代理服务器(请纠正我,我错了)。

仅供参考,当没有互联网时,应用程序反应非常慢,因为它不断重新连接到一些未知地址,如图所示,ProcMon.exe我相信这是代理,但我找不到internet options。以下是详细信息:

TCP Reconnect x.x.x.x:50074 -> 203.208.39.198:https    SUCCESS
TCP Reconnect x.x.x.x:50075 -> 203.208.39.198:https    SUCCESS
TCP Reconnect x.x.x.x:50077 -> 203.208.39.199:https    SUCCESS
TCP Reconnect x.x.x.x:50078 -> 203.208.39.199:https    SUCCESS
TCP Reconnect x.x.x.x:50077 -> 203.208.39.199:https    SUCCESS
TCP Reconnect x.x.x.x:50078 -> 203.208.39.199:https    SUCCESS
TCP Reconnect x.x.x.x:50080 -> 203.208.39.193:https    SUCCESS
TCP Reconnect x.x.x.x:50081 -> 203.208.39.193:https    SUCCESS
TCP Reconnect x.x.x.x:50080 -> 203.208.39.193:https    SUCCESS
TCP Reconnect x.x.x.x:50081 -> 203.208.39.193:https    SUCCESS

这些连接尝试会持续几分钟,然后才会最终到达目标地址。那么,我能知道这些203.208.39.xxx:https地址是否代表代理吗?

相关内容