summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-03-28build: Improve D-Bus checks for cross-compilationMarcel Holtmann1-0/+6
2011-03-28doc: Mark sim retry counters as doneBertrand Aygon1-1/+2
Update overview.txt: add SIM retry counter support information.
2011-03-28doc: update overview.txt: mark ipv6 as wipBertrand Aygon1-2/+4
update GPRS features with IPv6 context support in progress
2011-03-28doc: Update overview.txt: move USSD to implementedBertrand Aygon1-3/+6
move USSD from work in progress section to implemented section.
2011-03-28Revert dun: Add ATX command in emulator (X0 only)Denis Kenzior1-56/+1
This reverts commit 420ec0146a3757a013478337cf3aede6d04de730. ATX is already implemented in gatchat/gatserver.c
2011-03-25gatserver: add v250 ATL and ATM commandsOlivier Guiter1-0/+18
2011-03-25dun: Add ATX command in emulator (X0 only)Olivier Guiter1-1/+56
2011-03-24voicecall: fix voicecalls_release_queueFrédéric Danis1-2/+2
voicecalls_release_queue uses struct ofono_call instead of struct voicecall (which is used in "calls" list parameter and function voicecalls_release_next)
2011-03-24gatserver: add AT&F commandOlivier Guiter1-2/+27
2011-03-24TODO: remove me from ofono_sim_ready_notify()Pekka Pessi1-1/+0
__ofono_sim_recheck_pin() is fine by me
2011-03-24test: Don't go over 80 characters per lineDenis Kenzior1-1/+2
2011-03-24test: add a script to set any GPRS context propertyMika Liljeberg2-1/+40
2011-03-24gprs: fix memory leakMika Liljeberg1-0/+2
2011-03-24AUTHORS: Mention Philippe's contributionsDenis Kenzior1-0/+1
2011-03-24doc: Complete possible errors for stkPhilippe Nunes1-0/+7
2011-03-24isimodem: Fix indentation in SIM driverAki Niemi1-4/+4
2011-03-24isimodem/sim: added PIN and SIM state handlingPekka Pessi4-65/+634
Using PN_SECURITY resource to obtain PIN statuses. Using ofono_sim_ready_notify() aka __ofono_sim_recheck_pin() to report the ready state.
2011-03-24isimodem: fix network registration for older modemsMika Liljeberg1-2/+8
2011-03-23common: fix buffer length in phone_number_to_stringFrédéric Danis1-5/+5
update buffer length related to OFONO_MAX_PHONE_NUMBER_LENGTH change 78c1e96bf9601b5e5d31d04413baa1265a1c284f
2011-03-23gatserver: add ATZ commandOlivier Guiter1-18/+35
2011-03-23emulator: add support for +GCAPOlivier Guiter1-0/+7
2011-03-23stk: Fix getenv failure caseJeevaka Badrappan1-3/+3
2011-03-21unit: fix broken alpha id unit test casesJeevaka Badrappan1-3/+4
2011-03-21voicecall: Fix pause character validationLucas De Marchi1-2/+3
manager_tone() converts all tone chars to uppercase. Since everywhere we check for both 'p' and 'P' for a pause, tone_queue() should also check both before claiming the string is invalid.
2011-03-18sms: Rework tx_state logicDenis Kenzior1-14/+19
Using the enum which has a value of zero (PENDING) by default created some problems. Use a slightly modified version of the logic and consume less storage to boot.
2011-03-18doc: Add Cancel method to Message APIDenis Kenzior1-0/+9
2011-03-18sms: Move CancelMessage(o) methodDenis Kenzior3-43/+37
Move this method to the Message Cancel() method instead and introduce new __ofono_sms_txq_cancel API
2011-03-18sms: remove check for impossible NULL conditionLucas De Marchi1-3/+0
tx_next() must never be called with entry == NULL and currently it was already being dereferenced before making this check. Thus just remove it.
2011-03-18TODO: mark task 'cancel pending SMS' as doneLucas De Marchi1-9/+0
2011-03-18sms: allow message submission to be cancelledLucas De Marchi1-0/+88
Based on patch from Yang Gu <gyagp0@gmail.com>
2011-03-18sms: Don't leak memory, even in bizarre conditionsDenis Kenzior1-2/+2
2011-03-18sms: factor out 'remove entry' from tx_finished()Lucas De Marchi1-43/+62
Refactor tx_finished() and create a function to remove an entry from the tx queue. This function will be used also when a message is cancelled. Thus, handle the case in which state is MESSAGE_STATE_CANCELLED as well. Based on patch from Yang Gu <gyagp0@gmail.com>
2011-03-18message: add cancelled stateLucas De Marchi2-1/+4
Based on patch from Yang Gu <gyagp0@gmail.com>
2011-03-18examples: handle cancelled history statusLucas De Marchi1-0/+5
2011-03-18history: add cancelled statusLucas De Marchi1-0/+1
Based on patch from Yang Gu <gyagp0@gmail.com>
2011-03-18atmodem: fix issue in time reporting with ifxJeevaka Badrappan1-0/+26
2011-03-18smsutil: fix a memory leakBertrand Aygon1-1/+3
This was reported by cppcheck.
2011-03-18gisi: Fix PN_SIM reachability check decodingAki Niemi1-3/+3
2011-03-17hfp: Fix some whitespace issuesDenis Kenzior1-2/+2
2011-03-17AUTHORS: Mention Christian's contributionsDenis Kenzior1-0/+1
2011-03-17test: add Settings dict parsing for CDMA ConnManChristian Lam1-0/+10
2011-03-17test: Rename cdma connman scripts and add to buildDenis Kenzior3-1/+3
2011-03-17test: add CDMA Connection Manager support scriptsChristian Lam2-0/+40
2011-03-17cdmamodem: add CDMA Connection Manager supportChristian Lam4-3/+291
2011-03-17nokiacdma: add CDMA Connection Manager supportChristian Lam1-0/+4
2011-03-17src: add initial CDMA Connection Manager supportChristian Lam3-1/+574
2011-03-17cdma-connman: add CDMA Connection Manager supportChristian Lam2-1/+81
2011-03-17dbus: add CDMA Connection Manager interfaceChristian Lam1-0/+1
2011-03-17sms: limit the sms sending retryJeevaka Badrappan1-0/+6
If sending of SMS fails, then oFono core will try to resend it after n * 5 seconds(n = retry count). Due to this, conformance test case 27.22.8 sequence 1.4 fails(refer 31.124 spec). Plan is to limit the failue codes for which the retry will be done. This patch allows the retry if the failure is only due to network timeout. For all the other failure cases, retry is not done.
2011-03-16stk: fix issue with Get Inkey variable timeoutJeevaka Badrappan1-2/+26