examples: update examples for new device types

This commit is contained in:
Jiří Klimeš
2013-11-29 09:29:56 +01:00
parent 888a2618ea
commit aa54604f59
3 changed files with 16 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ import dbus, sys
# This example lists basic information about network interfaces known to NM
# For the types see include/NetworkManager.h
devtypes = { 1: "Ethernet",
2: "Wi-Fi",
5: "Bluetooth",
@@ -31,7 +32,11 @@ devtypes = { 1: "Ethernet",
9: "InfiniBand",
10: "Bond",
11: "VLAN",
12: "ADSL" }
12: "ADSL",
13: "Bridge",
14: "Generic",
15: "Team"
}
states = { 0: "Unknown",
10: "Unmanaged",