dbus: Remove forgotten, unused functions from GetAll script
This commit is contained in:
parent
777f07b62d
commit
58e1452474
1 changed files with 0 additions and 57 deletions
|
@ -5,63 +5,6 @@ import sys, os
|
|||
import time
|
||||
import gobject
|
||||
|
||||
WPAS_DBUS_SERVICE = "fi.w1.wpa_supplicant1"
|
||||
WPAS_DBUS_INTERFACE = "fi.w1.wpa_supplicant1"
|
||||
WPAS_DBUS_OPATH = "/fi/w1/wpa_supplicant1"
|
||||
|
||||
WPAS_DBUS_INTERFACES_INTERFACE = "fi.w1.wpa_supplicant1.Interface"
|
||||
WPAS_DBUS_INTERFACES_OPATH = "/fi/w1/wpa_supplicant1/Interfaces"
|
||||
WPAS_DBUS_BSS_INTERFACE = "fi.w1.wpa_supplicant1.Interface.BSS"
|
||||
|
||||
def showBss(bss):
|
||||
net_obj = bus.get_object(WPAS_DBUS_SERVICE, bss)
|
||||
net = dbus.Interface(net_obj, WPAS_DBUS_BSS_INTERFACE)
|
||||
props = net_obj.GetAll(WPAS_DBUS_BSS_INTERFACE,
|
||||
dbus_interface=dbus.PROPERTIES_IFACE)
|
||||
print props
|
||||
props = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Properties',
|
||||
dbus_interface=dbus.PROPERTIES_IFACE)
|
||||
#print props
|
||||
|
||||
# Convert the byte-array for SSID and BSSID to printable strings
|
||||
bssid = ""
|
||||
for item in props['BSSID']:
|
||||
bssid = bssid + ":%02x" % item
|
||||
bssid = bssid[1:]
|
||||
ssid = byte_array_to_string(props["SSID"])
|
||||
|
||||
wpa = "no"
|
||||
if props.has_key("WPAIE"):
|
||||
wpa = "yes"
|
||||
wpa2 = "no"
|
||||
if props.has_key("RSNIE"):
|
||||
wpa2 = "yes"
|
||||
freq = 0
|
||||
if props.has_key("Frequency"):
|
||||
freq = props["Frequency"]
|
||||
caps = props["Capabilities"]
|
||||
qual = props["Quality"]
|
||||
level = props["Level"]
|
||||
noise = props["Noise"]
|
||||
maxrate = props["MaxRate"] / 1000000
|
||||
|
||||
print " %s :: ssid='%s' wpa=%s wpa2=%s quality=%d%% rate=%d freq=%d" % (bssid, ssid, wpa, wpa2, qual, maxrate, freq)
|
||||
|
||||
def scanDone(success):
|
||||
gobject.MainLoop().quit()
|
||||
print "Scan done: success=%s" % success
|
||||
|
||||
res = if_obj.Get(WPAS_DBUS_INTERFACES_INTERFACE, 'BSSs',
|
||||
dbus_interface=dbus.PROPERTIES_IFACE)
|
||||
props = if_obj.GetAll(WPAS_DBUS_INTERFACES_INTERFACE,
|
||||
dbus_interface=dbus.PROPERTIES_IFACE)
|
||||
print props
|
||||
|
||||
print "Scanned wireless networks:"
|
||||
for opath in res:
|
||||
print opath
|
||||
showBss(opath)
|
||||
|
||||
def main():
|
||||
bus = dbus.SystemBus()
|
||||
wpas_obj = bus.get_object("fi.w1.wpa_supplicant1",
|
||||
|
|
Loading…
Reference in a new issue