diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2013-06-19 14:43:02 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2013-06-19 15:18:46 +0200 |
commit | d8ae738b963c62e30fab2460b8718e983255d411 (patch) | |
tree | 39b597f25a5dd5b7892d3de57e05eaaeb003da8e /data/qmi-service-wds.json | |
parent | ed47d531ad1b537a94c13eb8ed54fe2d2ae946aa (diff) | |
download | external_libqmi-d8ae738b963c62e30fab2460b8718e983255d411.zip external_libqmi-d8ae738b963c62e30fab2460b8718e983255d411.tar.gz external_libqmi-d8ae738b963c62e30fab2460b8718e983255d411.tar.bz2 |
wds: implement "Get Packet Statistics" request/response
Diffstat (limited to 'data/qmi-service-wds.json')
-rw-r--r-- | data/qmi-service-wds.json | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/data/qmi-service-wds.json b/data/qmi-service-wds.json index 3ed12ca..febb86e 100644 --- a/data/qmi-service-wds.json +++ b/data/qmi-service-wds.json @@ -200,6 +200,92 @@ "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, // ********************************************************************************* + { "name" : "Get Packet Statistics", + "type" : "Message", + "service" : "WDS", + "id" : "0x0024", + "version" : "1.0", + "input" : [ { "name" : "Mask", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "format" : "guint32", + "public-format" : "QmiWdsPacketStatisticsMaskFlag" } ], + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Tx Packets Ok", + "id" : "0x10", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Rx Packets Ok", + "id" : "0x11", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Tx Packets Error", + "id" : "0x12", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Rx Packets Error", + "id" : "0x13", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Tx Overflows", + "id" : "0x14", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Rx Overflows", + "id" : "0x15", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Tx Bytes Ok", + "id" : "0x19", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint64", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Rx Bytes Ok", + "id" : "0x1A", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint64", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Last Call Tx Bytes Ok", + "id" : "0x1B", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint64", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Last Call Rx Bytes Ok", + "id" : "0x1C", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint64", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Tx Packets Dropped", + "id" : "0x1D", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Rx Packets Dropped", + "id" : "0x1E", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, + + // ********************************************************************************* { "name" : "Get Current Settings", "type" : "Message", "service" : "WDS", |