summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-02-12hfp: Don't use Disconnect when agent was releasedGustavo F. Padovan1-7/+11
2010-02-12Keep track of adapter addressesDenis Kenzior1-10/+44
This will be required for peristent HFP modem path tracking.
2010-02-12Fix: Add free_func to send_method_call_with_replyDenis Kenzior1-10/+13
2010-02-12Fix: ofono_dbus_get_connection does not ref itDenis Kenzior1-2/+0
2010-02-12Cleanup: No sense in creating the hash if failedDenis Kenzior1-4/+3
2010-02-12Refactor: Device GetProperties handlingDenis Kenzior1-65/+18
2010-02-12Refactor: Use Adapter Devices propertyDenis Kenzior1-20/+58
Adapter interface ListDevices method is deprecated
2010-02-12Fix: Use Manager's Adapters property insteadDenis Kenzior1-20/+32
ListAdapters method on Manager interface is deprecated
2010-02-12Add a more sophisticated GetProperties reply parserDenis Kenzior1-0/+84
2010-02-12Style: No need for this to be a functionDenis Kenzior1-10/+7
2010-02-12Fix: Use a 15 second timeout on a disconnectDenis Kenzior1-1/+1
2010-02-12Style: No need for this to be a functionDenis Kenzior1-9/+9
2010-02-12Style: No need for a function hereDenis Kenzior1-8/+3
2010-02-12hfp: set timeout to rfcomm establishment procedureGustavo F. Padovan1-25/+83
If it expires we call org.bluez.HandsfreeGateway.Disconnect() It also modifies send_method_call and break it down into two functions. Now we have send_method_call_with_reply, for DBus messages that needs a reply. It sets a reply and a timeout for the message reply. The other funcion is called send_method_call without timeout or reply parameters.
2010-02-11hfp: avoid crash when hfp is declared on modem.confGustavo F. Padovan1-0/+4
2010-02-11hfp: fix copyright noticeGustavo F. Padovan1-1/+1
2010-02-10Mention Inaky's contributionsDenis Kenzior1-0/+1
2010-02-10Fix: plugin version mismatch warningInaky Perez-Gonzalez1-1/+2
When complaining about plugin version mismatch, print the version information
2010-02-10Clean: no error path neededInaky Perez-Gonzalez2-4/+10
Remove unneeded error path and document the rationale behind it in __ofono_modem_get_list() and manager_get_properties().
2010-02-10Rename server_io to channelZhenhua Zhang1-6/+6
To make it consistent with GAtChat.
2010-02-10Replace sprintf with snprintfZhenhua Zhang1-2/+3
2010-02-10Rename buf to read_buf in GAtServerZhenhua Zhang1-27/+27
Because we may introduce write_buf for sever response buffer.
2010-02-10Style: if statementDenis Kenzior1-2/+3
2010-02-10Fix: memory leakDenis Kenzior1-0/+5
2010-02-10Mention the new dynamic debug command line optionMarcel Holtmann1-1/+1
2010-02-09Enable USSD_STATE_USER_ACTIONAki Niemi1-5/+13
If the network requests user action in the response to an MO USSD, we cannot immediately return to USSD_STATE_USER_IDLE. Instead, USSD_STATE_USER_ACTION is entered. Note that it is left up to the driver to notify() when the USSD transaction is closed by the network due to inactivity. Another way to return to USSD_STATE_IDLE is for the user to cancel() the transaction.
2010-02-09Add isimodem USSD implementationAki Niemi1-10/+233
2010-02-09Add USSD codepoints and debuggingAki Niemi2-3/+28
2010-02-09Move USSD status enum to headerAki Niemi2-12/+12
2010-02-08Add Wavecom's quirky CPIN handlingDenis Kenzior2-7/+23
2010-02-08Fix: Tweak gprs attach logicDenis Kenzior1-5/+5
We use driver_attached to track whether the driver is attached / attaching. Unfortunately we only set it when set_attached succeeds. Instead we should set it right away when calling set_attached, so we cover pending attaches as well.
2010-02-08Fix: Add recheck flag to gprsDenis Kenzior1-1/+14
When a powered is toggled quickly, we ignore the second request. This flag tells us that we should recheck what the attach status should be once the current operation finishes
2010-02-08Refactor: Remove atutil dump_responseDenis Kenzior24-174/+0
No longer needed now that we have nice AT command tracing using OFONO_AT_DEBUG=1
2010-02-08Fix: Don't use ofono_debug directly in pluginsDenis Kenzior14-77/+75
2010-02-08Fix: Don't use ofono_debug directly in the coreDenis Kenzior13-83/+82
Use DBG macro which is integrated with the new debug framework.
2010-02-05Fix: Simplify overly complex error handlingDenis Kenzior1-32/+4
2010-02-05Style: Rename variables to better indicate arraysDenis Kenzior1-12/+12
Variables that hold arrays of strings should be named more appropriately to help indicate this.
2010-02-05Style: No need for void hereDenis Kenzior1-3/+3
2010-02-05Mention Vinicius' contributionsDenis Kenzior1-0/+1
2010-02-05hfp: Fix memory leak when listing bluetooth devicesVinicius Costa Gomes1-3/+7
2010-02-05hfp: wait Disconnect reply to power down the modemGustavo F. Padovan1-2/+24
2010-02-05Fix: Don't call UnregisterAgent if already ReleasedGustavo F. Padovan1-1/+7
Prevent to call UnregisterAgent on an already unregistered agent.
2010-02-05hfp: create modem for new devices paired on runtimeGustavo F. Padovan1-5/+57
It listens the UUIDs property to create a modem from the recently paired devices. It also renames added_watch to adapter_watch, a more proper name.
2010-02-05Update gitignoreDenis Kenzior1-0/+1
2010-02-05Fix: Send *EIAAUW after CGDCONT for STE and MBMDenis Kenzior2-18/+29
Otherwise the EIAAUW might fail.
2010-02-05Fix: Use snprintf instead of sprintf in hsomodemDenis Kenzior1-8/+9
2010-02-05Fix: Use snprintf instead of sprintf in mbmmodemDenis Kenzior1-4/+4
2010-02-05Fix: Use snprintf instead of sprintf in calypsoDenis Kenzior1-5/+5
2010-02-05Fix: Use snprintf instead of sprintf in stemodemDenis Kenzior2-10/+11
2010-02-05Fix: Use snprintf instead of sprintf in HFPDenis Kenzior2-5/+5