GPRS连接看门狗
如果连接中断,我想让我的基于 WM 的设备重新连接到 GPRS 网络。
WinAPI中有一个函数,
HRESULT WINAPI ConnMgrConnectionStatus(
HANDLE hConnection,
DWORD *pdwStatus
);
但它需要先前的连接句柄,在我的例子中,它可以手动建立。
有没有办法在没有句柄或订阅中断事件的情况下获取连接状态?
我可以查看 google.com,但这看起来不太好。
问候,
I'd like to make my WM-based device reconnect to GPRS network, if connection has been broken.
There is a function in WinAPI
HRESULT WINAPI ConnMgrConnectionStatus(
HANDLE hConnection,
DWORD *pdwStatus
);
but it requires previous connection handle, and in my case it can be established manually.
Is there a way to get connection status without handles or subscribe to break event?
I can just check google.com, but that doesn't look good.
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不能使用
ConnMgrQueryDetailedStatus
获取所有连接并运行它们以检查您拥有什么?Why can't you use the
ConnMgrQueryDetailedStatus
to get all the connections and run through them to check what you have?