the value "connected". This can only be seen if
previously no connection was present.
- array{string} Technologies [readonly]
+ array{string} AvailableTechnologies [readonly]
The list of available technologies. The strings
are the same as the ones from the service types.
if (powered)
key = "EnabledTechnologies";
else
- key = "Technologies";
+ key = "AvailableTechnologies";
dbus_message_iter_open_container(dict, DBUS_TYPE_DICT_ENTRY,
NULL, &entry);
{
DBusMessage *signal;
DBusMessageIter entry, value, iter;
- const char *key = "Technologies";
+ const char *key = "AvailableTechnologies";
DBG("type %d registered %d", type, registered);
val = str(path)
list = list + val[val.rfind("/") + 1:] + " "
print " Services = [ %s]" % (list)
- if "Technologies" in properties.keys():
- list = ""
- for val in properties["Technologies"]:
- list = list + val + " "
- print " Technologies = [ %s]" % (list)
for key in properties.keys():
if key in ["Profiles", "Devices", "Connections", "Services"]:
print_properties(key, properties[key])
- elif key in ["Technologies", "EnabledTechnologies"]:
+ elif key in ["AvailableTechnologies", "EnabledTechnologies"]:
print "%s" % (key)
list = ""
for val in properties[key]: