summaryrefslogtreecommitdiffstats
path: root/src/network.c
AgeCommit message (Collapse)AuthorFilesLines
2009-08-25Fix typo in technology nameAki Niemi1-1/+1
2009-08-19Evolve the netreg driverDenis Kenzior1-280/+317
2009-08-19Update network registration to the new SIM APIDenis Kenzior1-14/+61
2009-08-19Fix whitespace and style issuesDenis Kenzior1-5/+4
2009-08-17Move network-operator status enum out of common.hDenis Kenzior1-0/+8
2009-08-07Quiet an error if a modem is removed quicklyDenis Kenzior1-0/+3
2009-08-07Fix segfault upon modem removal due to g_sourceDenis Kenzior1-7/+16
Network registration was not removing operator list scan g_source, which was causing a crash in one of two potential places.
2009-08-07Re-enable reading of SPN & PNN on phonesimDenis Kenzior1-0/+4
2009-08-06Fix trailing whitespaceDenis Kenzior1-1/+1
2009-08-04Fix segfault when pnn record doesn't existDenis Kenzior1-1/+1
2009-08-03Fix over-complicated code flow that results in uninitialized variablesMarcel Holtmann1-1/+4
2009-08-03Make sure SIM read callbacks die cleanly.Andrzej Zaborowski1-3/+9
2009-07-29Remove all uses of modem.hDenis Kenzior1-1/+0
2009-07-29Rename modem_add_interface / modem_remove_interfaceDenis Kenzior1-2/+2
Move to ofono_modem_add_interface, ofono_modem_remove_interface and put in ofono/modem.h
2009-07-29Get rid of dbus-gsm.hDenis Kenzior1-7/+4
2009-07-29Rename dbus_gsm_dict_append_arrayDenis Kenzior1-1/+1
2009-07-29Rename dbus_gsm_dict_appendDenis Kenzior1-14/+14
2009-07-29Move & Rename PROPERTIES_ARRAY_SIGNATUREDenis Kenzior1-2/+2
2009-07-29Rename dbus_gsm_signal_array_property_changedDenis Kenzior1-1/+1
2009-07-29Rename dbus_gsm_signal_property_changedDenis Kenzior1-15/+15
2009-07-29Rename dbus_gsm error functions to __ofono_errorDenis Kenzior1-7/+7
2009-07-29Get rid of dbus_gsm_free_string_arrayDenis Kenzior1-3/+3
Use g_strfreev instead.
2009-07-29Move & Rename dbus_gsm_connectionDenis Kenzior1-19/+19
Move to ofono/dbus.h ofono_dbus_get_connection
2009-07-17Use registration status constants consistently.Andrzej Zaborowski1-3/+7
2009-07-17Don't dereference before the null check.Andrzej Zaborowski1-2/+4
2009-07-17Clean-up in sim.c.Andrzej Zaborowski1-4/+4
2009-07-17Make PNN / OPL work.Andrzej Zaborowski1-2/+2
2009-07-15Fix uninitialized warningDenis Kenzior1-2/+2
2009-07-14Refactor how EONS is usedDenis Kenzior1-6/+81
2009-07-14This function now uses on network_operator_dataDenis Kenzior1-2/+2
2009-07-14Refactor Network Registration for EONS capabilityDenis Kenzior1-90/+105
2009-07-14Get rid of some div by zero errorsDenis Kenzior1-2/+6
2009-07-14Refactor OPL codeDenis Kenzior1-10/+38
2009-07-14Fix CellId data type to be uint32 as intendedDenis Kenzior1-1/+1
2009-07-14Move SPDI to network.cDenis Kenzior1-12/+56
2009-07-14Preserve PNN orderDenis Kenzior1-1/+3
2009-07-14Move SPN reading to network.cDenis Kenzior1-41/+68
2009-07-14Move PNN reading to network.cDenis Kenzior1-0/+42
2009-07-14Read EF-PNN, EF-OPL and override network names accordingly.Andrzej Zaborowski1-20/+34
2009-07-07Fix status of operator unknown caseDenis Kenzior1-0/+2
When the current operator is reported, it's status is listed as unknown if no other operators are in the operator list
2009-06-25Add E-UTRAN as access technology of network opYang Gu1-0/+2
2009-06-23Fix when the same operator reported multiple timesDenis Kenzior1-5/+4
2009-06-22Read EF-SPDI and use it for SPN display.Andrzej Zaborowski1-1/+6
When the operator is one of those listed in EF-SPDI then we need to treat it like a HPLMN in deciding whether the SPN or PLMN name should be displayed.
2009-06-12Fixup style issues with previous MCC/MNC patchDenis Kenzior1-9/+14
- Breakup MCC/MNC LENGTH constant - Don't hardcode numbers - Fix >80 column length - Fix test case to expect strings instead of shorts
2009-06-12Change MNC and MCC variable types to stringAki Niemi1-29/+19
This is to make sure both 2 and 3-digit MNC values are correctly handled. Both the modem plugin API as well as the D-Bus API are affected.
2009-05-28Don't emit the Operator changed if not registeredDenis Kenzior1-0/+3
SPN Update emits the Operator property changed signal. However, this should not happen if there is no current operator
2009-05-28Fix a few style issuesDenis Kenzior1-0/+5
2009-05-28Fix signal emission when the operator changesDenis Kenzior1-2/+6
If the operator changes without going through a searching state the Operator change signal was not properly emitted
2009-05-28Make Operator attribute work when SPN is emptyDenis Kenzior1-1/+3
2009-05-26Add SimManager interface.Andrzej Zaborowski1-7/+87
Implement basic SIM filesystem utilities. Obtain Service Provider Name EF-SPN record. Make NetworkRegistration use SPN for PLMN display. This implements PLMN display rules in 31.102 "EFSPN".