QT app --- WIFI connection

Does QT have any APIs for detecting wireless networks? If not, are there other cross-platform wireless network discovery tools?

+4
source share
2 answers

Qt does not support wifi out of the box, wifi is too platform specific. Use your own Wi-Fi API.

+5
source

QNetworkInterface is the closest AFAICT class, but Rive says Qt does not support Wi-Fi network discovery.

You can create a graphical interface and control the logic using Qt, but you should look elsewhere for the cross-platform wifi library (if one exists, otherwise you must write your own for each platform you want to support).

+1
source

All Articles