summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-04-14simutil: Add support of CPHS EFcsp to our EF dbDenis Kenzior1-0/+1
2011-04-14network: One more trivial fixDenis Kenzior1-2/+2
total_length and record_length are the same in this context, but using total_length makes the code more readable
2011-04-14network: Refactor EFcsp to support STK RefreshDenis Kenzior1-11/+30
2011-04-14network: Use strings instead of ints in settingsDenis Kenzior1-10/+51
2011-04-14modem: Fix entering offline mode prematurelyDenis Kenzior1-4/+16
A contextual change to __ofono_modem_find_atom has caused us to enter into offline mode prematurely. find_atom was changed to return only the atoms that were registered, however the modem really has to know whether the sim atom is created (not registered) in order to know whether to wait for the SIM to be initialized or not.
2011-04-14sms: Fix typoDenis Kenzior1-1/+1
2011-04-14network: Read EFcsp after initializing reg stateDenis Kenzior1-42/+42
This is to avoid some benign race conditions when EFcsp might be read before the registration state has been established.
2011-04-14network: Try not to clash with 27.007-defined modesDenis Kenzior1-1/+1
2011-04-14netreg: Refactor register_callbackDenis Kenzior1-10/+3
2011-04-14netreg: Add CPHS CSP implementationAki Niemi1-26/+97
2011-04-11stkutil: Add additional info enum for BIPPhilippe Nunes1-0/+17
2011-04-11stkagent: Add ConfirmOpenChannel methodPhilippe Nunes2-0/+74
2011-04-11voicecall: fix to sim ecc free logicDenis Kenzior1-4/+7
Correct copy paste mistakes and a slight logic oversight
2011-04-11voicecall: Fix ECC list generation for empty EFeccDenis Kenzior1-1/+10
2011-04-11voicecall: add call, callsetup and callheld indicatorsFrédéric Danis1-0/+131
2011-04-11emulator: add call, callsetup and callheld cindsFrédéric Danis1-0/+5
2011-04-07stkagent: Avoid error when URL is nullNicolas Bertrand1-0/+3
...with STK command "LAUNCH BROWSER" and default URL
2011-04-07voicecall: Handle concurrent Refresh & NW ECC updateDenis Kenzior1-26/+35
There is a potential case where the EFecc is being refreshed due to a SIM refresh and a Network ECC list is updated. In this case we might report a set of numbers that is not yet complete. Take care of this case.
2011-04-07voicecall: Don't reverse sim_en_listDenis Kenzior1-2/+0
The order of the ECCs is not important as they're all unique.
2011-04-07voicecall: Fix ECC list generationDenis Kenzior1-5/+5
If the network list of ECC numbers is updated when we have no SIM, or when the SIM numbers have not yet been read, or there is an error during EFecc read, then the default_no_sim numbers are never added to the ECC list.
2011-04-07voicecall: Localize variable initializationDenis Kenzior1-8/+6
2011-04-07voicecall: network emergency number list supportJeevaka Badrappan1-0/+19
2011-04-07voicecall: Refactor emergency number list handlingJeevaka Badrappan1-65/+65
2011-04-07voicecall: Remove sim_state_watch on atom unregisterJeevaka Badrappan1-6/+7
2011-04-05stk: No more need to use get_registeredDenis Kenzior1-3/+3
__ofono_modem_find_atom returns only atoms that are registered now.
2011-04-05stk: Check for USSD atom before othersDenis Kenzior1-6/+6
For efficiency (and consistency) we should check for the USSD atom before checking CallForwarding, CallBarring, and CallSettings atoms.
2011-04-05stk: Check if terminal is busy before SIM RefreshAndrzej Zaborowski1-23/+71
2011-04-05call-forwarding: Move to avoid forward-declDenis Kenzior1-26/+25
2011-04-05call-forwarding: Remove unneeded forward-declDenis Kenzior1-1/+0
2011-04-05call-forwarding: Fix typoDenis Kenzior1-1/+1
2011-04-05call-forwarding: Reregister on EF-CFIS refreshAndrzej Zaborowski1-32/+15
2011-04-04modem: Tweak online logic if set_online is missingDenis Kenzior1-1/+4
In case set_online is missing, we should set online mode directly. If we're already online then set our state to Online, otherwise check if we should get Online.
2011-04-04modem: No need to set get_online on sim resetDenis Kenzior1-3/+0
When STK sends us a SIM Refresh resulting in a SIM reset, we should not set the online state as the modem should still keep us online anyway.
2011-04-04modem: Fix minor style violationsDenis Kenzior1-3/+4
2011-04-04modem: modem state decoupled from rf stateJeevaka Badrappan1-25/+55
2011-04-04voicecall: Detect emergency calls initiated by STKDenis Kenzior1-3/+17
2011-04-04voicecall: add emergency mode handlingJeevaka Badrappan1-1/+19
2011-04-04voicecall: generalize emergency call checkJeevaka Badrappan1-9/+5
2011-04-04modem: restrict operations allowed in emergencyJeevaka Badrappan1-0/+9
2011-04-04dbus: Add __ofono_error_emergency_activeJeevaka Badrappan2-0/+8
2011-04-04modem: add increment/decrement emergency mode apiJeevaka Badrappan2-0/+39
2011-04-04modem: add Emergency propertyJeevaka Badrappan1-0/+4
2011-04-04modem: add ofono_modem_get_emergency_mode apiJeevaka Badrappan1-0/+6
2011-03-31sim: add +CNUM support for HFP emulatorFrédéric Danis1-0/+66
2011-03-31stkutil: add one more sanity checkDenis Kenzior1-1/+1
2011-03-31stkutil: Minor style fixesDenis Kenzior1-3/+4
2011-03-31stkutil: decoding & encoding for class e commandsPhilippe Nunes2-39/+370
Complete the TLV parsing/builder to support BIP commands
2011-03-30stkutil: Add typo/cleaning modificationsPhilippe Nunes2-3/+3
2011-03-30modem: Only find registered atomsDenis Kenzior1-1/+1
Change the semantics of __ofono_modem_find_atom to only return registered atoms.
2011-03-30devinfo: Register the devinfo atomDenis Kenzior1-5/+19