diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-01-30 10:25:43 -0800 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-01-30 10:25:43 -0800 |
commit | 2c0b44502762a13cb529ceebe2e83d3dfac93908 (patch) | |
tree | efef38e001431c170c6c9b0b1dff58b6c0d64f51 /data | |
parent | 517af334d1c6b3130481ed5bbea6408915f2f49f (diff) | |
download | external_libqmi-2c0b44502762a13cb529ceebe2e83d3dfac93908.zip external_libqmi-2c0b44502762a13cb529ceebe2e83d3dfac93908.tar.gz external_libqmi-2c0b44502762a13cb529ceebe2e83d3dfac93908.tar.bz2 |
uim: implement 'UIM Change PIN'
Diffstat (limited to 'data')
-rw-r--r-- | data/qmi-service-uim.json | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/data/qmi-service-uim.json b/data/qmi-service-uim.json index ab9d9b7..e3f88d4 100644 --- a/data/qmi-service-uim.json +++ b/data/qmi-service-uim.json @@ -462,6 +462,66 @@ "format" : "guint8" } ] } ] }, // ********************************************************************************* + { "name" : "Change PIN", + "type" : "Message", + "service" : "UIM", + "id" : "0x0028", + "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" : "Old PIN", + "format" : "string" }, + { "name" : "New PIN", + "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" : "Card Result", + "id" : "0x13", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "SW1", + "format" : "guint8" }, + { "name" : "SW2", + "format" : "guint8" } ] } ] }, + + // ********************************************************************************* { "name" : "Get Card Status", "type" : "Message", "service" : "UIM", |