summaryrefslogtreecommitdiffstats
path: root/libril/ril_commands.h
diff options
context:
space:
mode:
authorjsh <jsh@google.com>2009-06-10 11:56:38 -0700
committerjsh <jsh@google.com>2009-06-19 17:34:46 -0700
commit09a68ba315ca3d6b092fd8078cc42b93b7934a1a (patch)
tree74a62bac33811c01b4f9d6ea40c559bb3e5854de /libril/ril_commands.h
parentd6aa2e32a44f883b008b9bb12b322f5b7e8dced4 (diff)
downloadandroid_hardware_ril-09a68ba315ca3d6b092fd8078cc42b93b7934a1a.tar.gz
android_hardware_ril-09a68ba315ca3d6b092fd8078cc42b93b7934a1a.tar.bz2
android_hardware_ril-09a68ba315ca3d6b092fd8078cc42b93b7934a1a.zip
Add remaining retry count to response for PIN/PUK commands.
RIL_REQUEST_ENTER_SIM_PIN RIL_REQUEST_ENTER_SIM_PUK RIL_REQUEST_ENTER_SIM_PIN2 RIL_REQUEST_ENTER_SIM_PUK2 RIL_REQUEST_CHANGE_SIM_PIN RIL_REQUEST_CHANGE_SIM_PIN2 RIL_REQUEST_SET_FACILITY_LOCK RIL_ENTER_NETWORK_DEPERSONALIZATION Also add requestToString entry for REPORT_SMS_MEMORY_STATUS.
Diffstat (limited to 'libril/ril_commands.h')
-rw-r--r--libril/ril_commands.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libril/ril_commands.h b/libril/ril_commands.h
index 1786c8d..ab60ef0 100644
--- a/libril/ril_commands.h
+++ b/libril/ril_commands.h
@@ -16,13 +16,13 @@
*/
{0, NULL, NULL}, //none
{RIL_REQUEST_GET_SIM_STATUS, dispatchVoid, responseSimStatus},
- {RIL_REQUEST_ENTER_SIM_PIN, dispatchStrings, responseVoid},
- {RIL_REQUEST_ENTER_SIM_PUK, dispatchStrings, responseVoid},
- {RIL_REQUEST_ENTER_SIM_PIN2, dispatchStrings, responseVoid},
- {RIL_REQUEST_ENTER_SIM_PUK2, dispatchStrings, responseVoid},
- {RIL_REQUEST_CHANGE_SIM_PIN, dispatchStrings, responseVoid},
- {RIL_REQUEST_CHANGE_SIM_PIN2, dispatchStrings, responseVoid},
- {RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION, dispatchStrings, responseVoid},
+ {RIL_REQUEST_ENTER_SIM_PIN, dispatchStrings, responseInts},
+ {RIL_REQUEST_ENTER_SIM_PUK, dispatchStrings, responseInts},
+ {RIL_REQUEST_ENTER_SIM_PIN2, dispatchStrings, responseInts},
+ {RIL_REQUEST_ENTER_SIM_PUK2, dispatchStrings, responseInts},
+ {RIL_REQUEST_CHANGE_SIM_PIN, dispatchStrings, responseInts},
+ {RIL_REQUEST_CHANGE_SIM_PIN2, dispatchStrings, responseInts},
+ {RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION, dispatchStrings, responseInts},
{RIL_REQUEST_GET_CURRENT_CALLS, dispatchVoid, responseCallList},
{RIL_REQUEST_DIAL, dispatchDial, responseVoid},
{RIL_REQUEST_GET_IMSI, dispatchVoid, responseString},
@@ -57,7 +57,7 @@
{RIL_REQUEST_ANSWER,dispatchVoid, responseVoid},
{RIL_REQUEST_DEACTIVATE_DATA_CALL, dispatchStrings, responseVoid},
{RIL_REQUEST_QUERY_FACILITY_LOCK, dispatchStrings, responseInts},
- {RIL_REQUEST_SET_FACILITY_LOCK, dispatchStrings, responseVoid},
+ {RIL_REQUEST_SET_FACILITY_LOCK, dispatchStrings, responseInts},
{RIL_REQUEST_CHANGE_BARRING_PASSWORD, dispatchStrings, responseVoid},
{RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE, dispatchVoid, responseInts},
{RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC, dispatchVoid, responseVoid},