Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-01-18 | stk: find_atom only returns registered atoms | Denis Kenzior | 1 | -9/+4 | |
This seems to be an oversight from an earlier refactoring. | |||||
2012-01-18 | stk: Use __ofono_atom_find | Denis Kenzior | 1 | -73/+28 | |
2011-10-10 | core: Update copyright information | Marcel Holtmann | 1 | -1/+1 | |
2011-08-14 | stk: Fix crashes | Denis Kenzior | 1 | -36/+13 | |
2011-07-25 | stk: Fix missing break statement | Denis Kenzior | 1 | -0/+1 | |
2011-07-25 | stk: Make sure to set cancel_cmd | Denis Kenzior | 1 | -17/+34 | |
For handled commands, in case the terminal response is not reported by the modem, we must set the cancel_cmd variable so the command is canceled properly. This patch also modifies the behavior so that pending_cmd is freed, since stk_proactive_command_cancel expects cancel_cmd to be set if pending_cmd is not NULL. | |||||
2011-07-25 | stk: Remove code that does nothing | Denis Kenzior | 1 | -3/+0 | |
2011-07-25 | stk: Fix possible crash | Denis Kenzior | 1 | -4/+4 | |
We can't call stk_command_free on a NULL object | |||||
2011-07-25 | stk: Handle set up call in handled_notify | Jeevaka Badrappan | 1 | -26/+140 | |
2011-07-15 | stk: Fix crash seen in stk_alpha_id_unset | Jeevaka Badrappan | 1 | -1/+6 | |
If there is no default agent, then current agent also will be NULL. So, call stk_agent_request_cancel only when there is a valid current agent. | |||||
2011-07-06 | stk: Use the right command pointer | Andrzej Zaborowski | 1 | -1/+1 | |
2011-05-31 | stk: Cancel pending DTMF tones if session is ended | Denis Kenzior | 1 | -13/+25 | |
The Send DTMF command is special in its use of DisplayAction method of STK agent. This allows the user to send a 'User Terminated Session' response to the SIM. If the user performs this action, then any pending DTMFs should also be canceled as soon as possible. | |||||
2011-05-31 | stk: simplify respond_on_exit flag handling | Philippe Nunes | 1 | -25/+2 | |
respond_on_exit flag is set by commands which are dispatched to the agent, so that if the agent exits prematurely, a 'User Terminated Session' response is sent to the SIM. There were a couple of corner cases not quite handled correctly: - During Set Up Call, if the user confirmation phase succeeded and the call was dispatched to voicecall atom successfully, and the agent exited at this point, then no terminal response would be sent until the call succeeded / failed. Now the agent termination results in an 'User Terminated Session' response being sent immediately, but the call setup proceeding. | |||||
2011-04-05 | stk: No more need to use get_registered | Denis Kenzior | 1 | -3/+3 | |
__ofono_modem_find_atom returns only atoms that are registered now. | |||||
2011-04-05 | stk: Check for USSD atom before others | Denis Kenzior | 1 | -6/+6 | |
For efficiency (and consistency) we should check for the USSD atom before checking CallForwarding, CallBarring, and CallSettings atoms. | |||||
2011-04-05 | stk: Check if terminal is busy before SIM Refresh | Andrzej Zaborowski | 1 | -23/+71 | |
2011-03-30 | stk: Handle user termination for Send DTMF | Philippe Nunes | 1 | -5/+21 | |
2011-03-23 | stk: Fix getenv failure case | Jeevaka Badrappan | 1 | -3/+3 | |
2011-03-16 | stk: fix issue with Get Inkey variable timeout | Jeevaka Badrappan | 1 | -2/+26 | |
2011-03-02 | stk: Handle Refresh if also performed by modem | Andrzej Zaborowski | 1 | -6/+30 | |
2011-02-28 | stk: Make sure to reset respond_on_exit | Andrzej Zaborowski | 1 | -0/+1 | |
This fixes a crash spotted by Lasse Kunnasluoto documented at http://lists.ofono.org/pipermail/ofono/2011-February/009211.html | |||||
2011-02-17 | stk: Partially handle Refresh command | Andrzej Zaborowski | 1 | -0/+65 | |
Only the four "NAA initialisation" modes are handled at the moment. | |||||
2011-02-02 | stk: Fix style issues | Aki Niemi | 1 | -4/+6 | |
2011-01-26 | stk: Fix issue in stk_alpha_id_set | Jeevaka Badrappan | 1 | -1/+6 | |
Fixes the crash seen with the null alpha identifier. Also removed the icon check since the decision of whether to inform the user of the action is dependent entirely on whether the alpha identifier is provided by the UICC. | |||||
2011-01-24 | stk: change timeout from 10 to 3mintues | Jeevaka Badrappan | 1 | -1/+1 | |
2011-01-20 | stk: Handle Launch Browser proactive command | Jeevaka Badrappan | 1 | -0/+79 | |
2011-01-12 | stk: make use of ADD_ERROR_RESULT macro | Jeevaka Badrappan | 1 | -39/+30 | |
2011-01-12 | stk: add additional info for terminal busy result | Jeevaka Badrappan | 1 | -8/+37 | |
As per the ETSI TS 102 223 specification 8.12.2, it is mandatory to provide additional information for the general result "ME currently unable to process command". | |||||
2011-01-06 | stk: Remove unwanted error check | Jeevaka Badrappan | 1 | -5/+0 | |
Possible return values of __ofono_voicecall_tone_send are -ENOSYS, -ENOENT, -ENOMEM and -EINVAL. | |||||
2010-12-27 | stk: Remove unneeded assignment | Denis Kenzior | 1 | -3/+1 | |
2010-12-27 | stk: fix issue in set up menu handling | Jeevaka Badrappan | 1 | -13/+15 | |
2010-12-23 | stk: Send the AlphaId's to agent | Andrzej Zaborowski | 1 | -2/+7 | |
Terminate session if return signature doesn't match but allow agent to return from the call if it does match. | |||||
2010-12-10 | stk: fix issue to avoid null pointer for alpha_id | Guillaume Lucas | 1 | -7/+6 | |
If a SET UP CALL proactive command with no alpha identifier occurs, the alpha_id pointer will be set to NULL. This will generate a crash in the stkagent with dbus function. To avoid this we use an empty string if the alpha identifier is not present in the command. | |||||
2010-12-10 | stk: No need to check for null text | Denis Kenzior | 1 | -13/+8 | |
For Set up idle mode text | |||||
2010-12-08 | stk: Handle provide local info proactive command | Yang Gu | 1 | -0/+77 | |
2010-11-30 | stk: Add busy error for the display text command | Guillaume Lucas | 1 | -0/+15 | |
According to the sequence 1.2 of the ETSI TS 102 384 a busy screen error should be returns for the display text proactive command when the ME is not able to display the text. | |||||
2010-11-29 | core: explicitly compare pointers to NULL | Lucas De Marchi | 1 | -31/+31 | |
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl> | |||||
2010-11-25 | stk: use bigger timeout in DisplayText | Andrzej Zaborowski | 1 | -0/+3 | |
When the wait for user confirmation bit is set. | |||||
2010-11-23 | stk: Minor style fix | Denis Kenzior | 1 | -1/+1 | |
2010-11-23 | stk: Handle null Text field | Andrzej Zaborowski | 1 | -0/+3 | |
Add a NULL check in dbus_apply_text_attributes because in some places (like DisplayText handler) we call it without checking and we just check the return value once. | |||||
2010-11-22 | src: coding style fixes - rule M6 | Jeevaka Badrappan | 1 | -2/+2 | |
2010-11-08 | stk: API for SMS Point-to-Point download to UICC | Andrzej Zaborowski | 1 | -0/+39 | |
The callback returns the TP-User-Data element content of the RP-ACK or RP-ERROR message, returned by the UICC. | |||||
2010-11-04 | sms: Refactor __ofono_sms_txq_submit | Denis Kenzior | 1 | -3/+4 | |
2010-10-28 | stk: Handle Send SS in handled_notify | Denis Kenzior | 1 | -0/+5 | |
2010-10-27 | stk: Remove ofono_stk_terminal_response_sent_notify | Denis Kenzior | 1 | -7/+11 | |
Not needed for now. We can always put this back in later if need be. | |||||
2010-10-27 | stk: Handle more commands in handled_notify | Andrzej Zaborowski | 1 | -0/+27 | |
2010-10-25 | stk: Default to general beep if no tone is provided | Denis Kenzior | 1 | -1/+1 | |
According to section 6.6.5 of 102.223 | |||||
2010-10-25 | stk: Handle the Play Tone proactive command. | Andrzej Zaborowski | 1 | -0/+131 | |
2010-10-25 | stk: Add duration_to_msecs to reduce duplication. | Andrzej Zaborowski | 1 | -35/+26 | |
2010-10-22 | stk: Nitpick some newline issues | Denis Kenzior | 1 | -4/+5 | |