summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2009-11-05Fix: Load GPRS settings before finding netregDenis Kenzior1-9/+9
GPRS Settings should be loaded before we try to find netreg atom and potentially try to make the attach/detach decisions.
2009-11-04Fix: Handle the case where only PLMN name is givenDenis Kenzior1-7/+17
HFP does not allow the use of register / unregister or scan for operator functionality. It only allows the name of the operator to be given, not even an MCC/MNC. Handle this situation inside netreg atom.
2009-11-02Add ability to restore GPRS contexts from settingsDenis Kenzior1-5/+113
2009-11-02Save GPRS context settingsDenis Kenzior1-2/+67
2009-11-02Add Basic save/restore code for GPRS settingDenis Kenzior1-3/+76
2009-11-02Limit the number of contexts that we manageDenis Kenzior1-0/+4
2009-11-02Update CreateContext APIDenis Kenzior1-10/+26
2009-11-02Add utility to convert strings to context typeDenis Kenzior1-8/+17
2009-11-02Fix: Default to type internetDenis Kenzior1-1/+1
2009-10-30Fix: Quiet compiler warningsDenis Kenzior2-5/+0
2009-10-30Add checking for valid APN formatDenis Kenzior1-0/+3
2009-10-30Add utility to test for valid APN namesDenis Kenzior2-0/+28
2009-10-30Add saving / restoring of netreg settingsDenis Kenzior1-0/+52
2009-10-30Add utilities for settings managementDenis Kenzior2-0/+67
2009-10-30Fix: Remove unused header includeDenis Kenzior1-1/+0
2009-10-30Add Mode property to NetworkRegistrationDenis Kenzior1-2/+52
2009-10-30Fix: style issuesDenis Kenzior1-2/+4
2009-10-30Fix: Refine the logic for CHLD=1 and CHLD=2Denis Kenzior1-4/+8
2009-10-29Fix: Properly update technologiesDenis Kenzior1-3/+10
When current operator is reported, update the technology list if the tech information is available
2009-10-29Compress the operator list before processingDenis Kenzior1-10/+30
2009-10-29Add utility to compress plmns that vary by techDenis Kenzior1-0/+30
2009-10-29Refactor: Get rid of useless netreg parameterDenis Kenzior1-16/+12
2009-10-29Refactor: Use Technologies instead of TechnologyDenis Kenzior1-18/+24
2009-10-29Add utility to create a list of supported techsDenis Kenzior1-0/+24
2009-10-29Refactor: Operator registration to DBUSDenis Kenzior1-30/+21
2009-10-29Refactor: Internal data structuresDenis Kenzior1-61/+71
This is in preparation to coalescing multiple operators reported by the driver that vary only by technology into a single operator with multiple technologies
2009-10-29Fix: Don't pass ofono_network_operator structuresDenis Kenzior3-8/+8
2009-10-29Fix: Also auto register when status is unknownDenis Kenzior1-1/+2
2009-10-29Fix: Refine logic for hangupDenis Kenzior1-4/+6
2009-10-28In the simple single active call case, use hangupDenis Kenzior1-6/+23
2009-10-28Fix: Take care of the logic for DialingDenis Kenzior1-2/+65
The logic for dialing a call while other calls are in the system is a bit more complicated than what was implemented. There are several cases to consider: - Active Call and Held Call In this situation we cannot dial, the user must drop one of the calls. - Active Call and Waiting Call -> We have to put the active call on hold, unfortunately there is no standard command to do so without affecting the waiting call. If the modem has a vendor specific implementation, then try to use that. - Active Call only -> Put the active call on hold. We use the swap_without_accept implementation (if exists) to be safe, otherwise we fall back to hold active calls. - No Active calls -> Simply dial
2009-10-28Refactor: Avoid unnecessary forward declarationsDenis Kenzior1-45/+44
2009-10-28Refactor: Move more code aroundDenis Kenzior1-69/+67
Avoid unnecessary forward declarations
2009-10-28Refactor: Move code to avoid forward declarationDenis Kenzior1-171/+170
2009-10-28Refactor: Get rid of PENDING_FLAG in voicecallsDenis Kenzior1-128/+44
the pending variable was enough already. Also refactor to use __ofono_dbus_pending_reply to make the code much more readable.
2009-10-28Add utility to parse CLIR optionDenis Kenzior1-7/+17
2009-10-27Refactor: replace netreg get_operator with mcc/mncDenis Kenzior2-8/+20
The full operator information is useless as only mcc/mnc are really required. The internal structures will be changing soon
2009-10-27Fix: Don't emit spurious Base Station Name signalDenis Kenzior1-0/+4
2009-10-27Fix: Skip empty emergency numbersDenis Kenzior1-1/+3
2009-10-27Fix: Obscure crash when GPRS is not supportedDenis Kenzior1-0/+5
2009-10-27Fix: Properly unregister context on exitDenis Kenzior1-0/+7
2009-10-26Fix: Use driver_attached instead of attachedDenis Kenzior1-1/+1
2009-10-26Make netreg_update based on CREG, not CGREGDenis Kenzior1-5/+2
2009-10-26Simplify logic in netreg_updateDenis Kenzior1-13/+14
2009-10-26Fix unused variable warningDenis Kenzior1-2/+1
2009-10-26Don't cause an infinite loopDenis Kenzior1-5/+4
2009-10-26Get rid of the AFTER_ROAMING stuffDenis Kenzior1-18/+1
2009-10-26Ignore gprs status when not attached/attachingDenis Kenzior1-0/+5
2009-10-26Update attached status when gprs status changesDenis Kenzior1-5/+1
2009-10-26Fix: notify_attached was only used when detachedDenis Kenzior1-6/+10
The standard only specifies that the context might have been detached by the network / mobile equipment. Not attached.