summaryrefslogtreecommitdiffstats
path: root/ss.c
Commit message (Collapse)AuthorAgeFilesLines
* Add support for USSD messagesHEADreplicant-6.0Wolfgang Wiedmeyer2017-07-101-0/+488
| | | | | | | | | | | The implementation is based on the code for USSD support that was used before the rewrite of Samsung-RIL. USSD messages in GSM7 format are decoded to UTF8. The decoding code was adapted from huaweigeneric-ril[1]. Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> [1] https://github.com/DerArtem/huaweigeneric-ril
* Samsung-RIL rewrite: harder, better, probably not faster but definitely strongerPaul Kocialkowski2014-08-071-251/+0
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* RIL_LOG macro to log messagesreplicant-4.2-0002replicant-4.2-0001Paul Kocialkowski2013-12-201-9/+9
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Send internal SMS to alert the user when an important crash just happenedPaul Kocialkowski2013-09-291-1/+1
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Check modem state before RIL requests and properly report it on crashPaul Kocialkowski2013-09-281-0/+6
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Update copyright informationPaul Kocialkowski2013-03-311-2/+1
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Coding style: add spaces after switch statementsPaul Kocialkowski2013-03-311-3/+3
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Avoid checking ipc_message_info pointer since it is checked in readloopPaul Kocialkowski2013-03-311-3/+2
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* ss: Refactor code, check for NULL pointers and prevent memory leaksPaul Kocialkowski2013-03-311-4/+26
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Rename samsung-ril to Samsung-RIL, refactor Android.mk and comments stylePaul Kocialkowski2013-03-301-5/+5
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Change coding style: add a space after if, for and whilePaul Kocialkowski2013-02-091-5/+5
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Copyright: Corrected email addressPaul Kocialkowski2012-11-191-1/+1
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Reworked RIL requests, globals, SIM status, clientPaul Kocialkowski2012-11-011-14/+14
| | | | | | | | | | | * Handling ril requests with lists * Renamed functions to complete requests * Globals (most of them) are held in ril_data * Renamed SIM_Status to ril_sim_state * Renamed client object to data * Moved client funcs to a sub-structure Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Cosmetics: removed lines with tabs or spacesPaul Kocialkowski2012-08-281-1/+1
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* Fix some compilation warningsAlexander Tarasikov2012-07-251-5/+2
|
* Fix ussd message corruptionAlexander Tarasikov2012-07-131-1/+1
|
* Move SmsCodingScheme to utils.c for future reuseAlexander Tarasikov2012-07-131-38/+0
|
* Fix USSD encoding for all GSM7/UCS2/ASCII casesAlexander Tarasikov2012-07-131-5/+45
| | | | | | | This is a port of the DCS decoding function from the XDANDROID RIL. Now latin and unicode USSD notifications are correctly received. Verified by receiving cyrillic messages
* Add UCS2 USSD decodingAlexander Tarasikov2012-07-131-2/+18
|
* Added USSD supportPaulK2012-02-211-0/+210