diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-01-30 10:25:37 -0800 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-01-30 10:25:37 -0800 |
commit | 83aa5613d7fd938d3b6266f5c4ba84baa2d4aa57 (patch) | |
tree | 5577e329318997f924c264e3c038a8c9179d8435 /data | |
parent | a23fc29c5e852c0b20af7f4210b289ff978603d8 (diff) | |
download | external_libqmi-83aa5613d7fd938d3b6266f5c4ba84baa2d4aa57.zip external_libqmi-83aa5613d7fd938d3b6266f5c4ba84baa2d4aa57.tar.gz external_libqmi-83aa5613d7fd938d3b6266f5c4ba84baa2d4aa57.tar.bz2 |
uim: implement 'UIM Set PIN protection'
Diffstat (limited to 'data')
-rw-r--r-- | data/qmi-service-uim.json | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/data/qmi-service-uim.json b/data/qmi-service-uim.json index 6b38f2a..8ad0cd9 100644 --- a/data/qmi-service-uim.json +++ b/data/qmi-service-uim.json @@ -292,6 +292,58 @@ "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, // ********************************************************************************* + { "name" : "Set PIN Protection", + "type" : "Message", + "service" : "UIM", + "id" : "0x0025", + "version" : "1.0", + "input" : [ { "name" : "Session Information", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Session Type", + "format" : "guint8", + "public-format" : "QmiUimSessionType" }, + { "name" : "Application Identifier", + "format" : "string" } ] }, + { "name" : "Info", + "id" : "0x02", + "mandatory" : "yes", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "PIN ID", + "format" : "guint8", + "public-format" : "QmiUimPinId" }, + { "name" : "PIN enabled", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "PIN Value", + "format" : "string" } ] }, + { "name" : "Response In Indication Token", + "id" : "0x11", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32" } ], + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Retries Remaining", + "id" : "0x10", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Verify Retries Left", + "format" : "guint8" }, + { "name" : "Unblock Retries Left", + "format" : "guint8" } ], + "prerequisites": [ { "common-ref" : "No Success" } ] }, + { "name" : "Response In Indication Token", + "id" : "0x12", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, + + // ********************************************************************************* { "name" : "Get Card Status", "type" : "Message", "service" : "UIM", |