diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-07-29 20:47:25 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-07-29 20:47:25 -0700 |
commit | d7564e1d69c252b4a6116e8fa556c00061bbe1b7 (patch) | |
tree | 1d9bce694e3a86dbf876dd153dabfe35c1f9da15 /test | |
parent | ba9d60a47cd97a966e7b3c93636f20d005033afb (diff) | |
download | connman-d7564e1d69c252b4a6116e8fa556c00061bbe1b7.tar.gz connman-d7564e1d69c252b4a6116e8fa556c00061bbe1b7.tar.bz2 connman-d7564e1d69c252b4a6116e8fa556c00061bbe1b7.zip |
Add decoding support for IPv6 properties
Diffstat (limited to 'test')
-rwxr-xr-x | test/monitor-services | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/monitor-services b/test/monitor-services index 93fd7581..05d1e1d9 100755 --- a/test/monitor-services +++ b/test/monitor-services @@ -28,7 +28,9 @@ def property_changed(name, value, path): for i in value: val = val + " " + i[i.rfind("/") + 1:] val = val + " ]" - elif name in ["IPv4", "IPv4.Configuration", "Proxy", "Ethernet"]: + elif name in ["IPv4", "IPv4.Configuration", + "IPv6", "IPv6.Configuration", + "Proxy", "Ethernet"]: val = extract_values(value) elif name in ["Nameservers", "Nameservers.Configuration", "Domains", "Domains.Configuration"]: |