Code

decode_network_values dstype is ordinal value of string literal
[collectd.git] / contrib / collectd_network.py
index 9af0fb008a72790e48562e7e6440c3bec8c6dd2a..dc6cdac4f997fecbaf2d68d5548195aa302dcfed 100644 (file)
@@ -76,7 +76,7 @@ def decode_network_values(ptype, plen, buf):
     assert double.size == number.size
 
     result = []
-    for dstype in buf[header.size+short.size:off]:
+    for dstype in [ord(x) for x in buf[header.size+short.size:off]]:
         if dstype == DS_TYPE_COUNTER:
             result.append((dstype, number.unpack_from(buf, off)[0]))
             off += valskip