mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 17:59:25 +01:00
test: Remove support for WDS property
This commit is contained in:
parent
2d2bc70b64
commit
3ef565e31f
14
test/get-wds
14
test/get-wds
@ -1,14 +0,0 @@
|
|||||||
#!/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"));
|
|
20
test/set-wds
20
test/set-wds
@ -1,20 +0,0 @@
|
|||||||
#!/usr/bin/python3
|
|
||||||
|
|
||||||
import dbus
|
|
||||||
import sys
|
|
||||||
|
|
||||||
if len(sys.argv) != 3:
|
|
||||||
print("Usage: %s <device> <true|false>" % (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")
|
|
||||||
|
|
||||||
if (sys.argv[2] == 'true'):
|
|
||||||
device.Set("net.connman.iwd.Device", "WDS", dbus.Boolean(1))
|
|
||||||
elif (sys.argv[2] == 'false'):
|
|
||||||
device.Set("net.connman.iwd.Device", "WDS", dbus.Boolean(0))
|
|
||||||
else:
|
|
||||||
print("Invalid argument. Must be 'true' or 'false'")
|
|
||||||
sys.exit(1);
|
|
Loading…
Reference in New Issue
Block a user