mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-03 02:02:33 +01:00
test: add get-wds script
This commit is contained in:
parent
b3071d63c7
commit
1d81325976
14
test/get-wds
Executable file
14
test/get-wds
Executable file
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import dbus
|
||||
import sys
|
||||
|
||||
if len(sys.argv) != 2:
|
||||
print("Usage: %s <device>" % (sys.argv[0]))
|
||||
sys.exit(1)
|
||||
|
||||
bus = dbus.SystemBus()
|
||||
device = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
|
||||
"org.freedesktop.DBus.Properties")
|
||||
|
||||
print("WDS: %d" % device.Get("net.connman.iwd.Device", "WDS"));
|
Loading…
Reference in New Issue
Block a user