summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorSom_SP <somashekhar.puttagangaiah@intel.com>2021-06-29 21:15:26 +0530
committerAleksander Morgado <aleksander@aleksander.es>2021-09-08 12:43:45 +0200
commit9f9da41561633d2994db62552fb104d8f7390c11 (patch)
treec714b7497a0b1ed7c1d6461c5755a248a1d2b9b6 /data
parent411287f725ea1888ec513f43463377858dac4f8a (diff)
libmbim-glib,ms-basic-connect-extensions: adding cid 'version'
The Version CID implementation. For MBB drivers that support MBIM Microsoft extension 2.0 or above, MBIM_CID_VERSION is a mandatory command for exchanging MBIM version information between the host and the device. For in-market devices with drivers that do not recognize this CID, the host will assume and provide backward compatibility.
Diffstat (limited to 'data')
-rwxr-xr-xdata/mbim-service-ms-basic-connect-extensions.json23
1 files changed, 19 insertions, 4 deletions
diff --git a/data/mbim-service-ms-basic-connect-extensions.json b/data/mbim-service-ms-basic-connect-extensions.json
index a5097bd..ac1392f 100755
--- a/data/mbim-service-ms-basic-connect-extensions.json
+++ b/data/mbim-service-ms-basic-connect-extensions.json
@@ -219,8 +219,8 @@
{ "name" : "ControlCaps",
"format" : "guint32",
"public-format" : "MbimCtrlCaps" },
- { "name" : "MaxSessions",
- "format" : "guint32" },
+ { "name" : "MaxSessions",
+ "format" : "guint32" },
{ "name" : "CustomDataClass",
"format" : "string",
"max-size" : "22" },
@@ -233,7 +233,22 @@
{ "name" : "HardwareInfo",
"format" : "string",
"max-size" : "60" },
- { "name" : "ExecutorIndex",
- "format" : "guint32" } ] }
+ { "name" : "ExecutorIndex",
+ "format" : "guint32" } ] },
+
+ // *********************************************************************************
+
+ { "name" : "Version",
+ "service" : "Ms Basic Connect Extensions",
+ "type" : "Command",
+ "since" : "1.28",
+ "query" : [ { "name" : "MbimVersion",
+ "format" : "guint16" },
+ { "name" : "MbimExtendedVersion",
+ "format" : "guint16" } ],
+ "response" : [ { "name" : "MbimVersion",
+ "format" : "guint16" },
+ { "name" : "MbimExtendedVersion",
+ "format" : "guint16" } ] }
]