summaryrefslogtreecommitdiffstats
path: root/src/adapter.h
Commit message (Collapse)AuthorAgeFilesLines
* Don't call read scan enable if the adapter is powering downJohan Hedberg2009-02-271-0/+1
| | | | | | | When powering down we explicitly set the scan mode to 0 before calling the HCI_DEVDOWN ioctl. To avoid HCI command timeouts track this situation and don't call read scan enable in dbus-hci.c when the command complete for the write scan enable arrives.
* Fix not handling properly local name changes.Luiz Augusto von Dentz2009-02-121-0/+1
| | | | | | | Changing adapter name via dbus was emitting PropertyChanged right away. This not only can cause consistency problems but also makes bluetoothd to not emit a PropertyChanged when a third application such as hciconfig changes the adapter name.
* Handle active connection using device object.Luiz Augusto von Dentz2009-01-111-13/+6
|
* Move bonding creation to device.c.Luiz Augusto von Dentz2009-01-111-35/+1
|
* Update copyright informationMarcel Holtmann2009-01-011-1/+1
|
* Cleanup adapters on exit.Luiz Augusto von Dentz2008-12-221-1/+2
| | | | | | | When bluetoothd is terminated any remaining registered adapters should be unregistered (including proper D-Bus signal emition) and have their drivers removed. The adapters should also be brought down unless they were already up upon initialization.
* Remove duplicated declaration of adapter_remove.Luiz Augusto von Dentz2008-12-221-1/+0
|
* Make adapter_update_devices private to adapter.cJohan Hedberg2008-11-291-1/+0
|
* Make adapter_remove_discov_timeout private to adapter.cJohan Hedberg2008-11-291-1/+0
|
* Clean up scan mode related codeJohan Hedberg2008-11-291-3/+0
|
* Remove unnecessary adapter_set_mode functionJohan Hedberg2008-11-291-1/+0
|
* Introduce PairableTimeout Property and fix use of g_timeout_add.Luiz Augusto von Dentz2008-11-271-1/+0
| | | | | | | PairableTimeout work similarly to DiscoverableTimeout where the user application can set the amount of time to stay in Pairable. It also fixes the use of g_timeout_add to g_timeout_add_seconds for both PairableTimeout and DiscoverableTimeout.
* Introduce Pairable property.Luiz Augusto von Dentz2008-11-201-0/+2
| | | | | | | | | | | As the name suggest it tells when an adapter enter or leaves bondable mode, it works as follow: Pairable=true & Discoverable=true: limited IAC Pairable=true & Discoverable=false: pairable but inquiry scan disabled Pairable=false & Discoverable=true: inquiry scan enabled (with Generic IAC) but new pairings cannot be created (same as if there was no agent) Pairable=false & Discoverable=false: inquiry scan disabled & non-pairable (as if there was no agent)
* Make FindAdapter return the any object if presentMarcel Holtmann2008-11-011-0/+2
|
* Add method for requesting/releasing the any adapter object pathMarcel Holtmann2008-11-011-1/+4
|
* Send DeviceFound signals also the first time the name gets resolvedJohan Hedberg2008-10-281-1/+4
| | | | | | This patch makes sure that we send the DeviceFound with the Name property for newly found pre-2.1 devices when their names gets resolved for the first time.
* Fix include files from adapter.hMarcel Holtmann2008-09-241-1/+4
|
* Update devices list property when a new device is created/removed.Luiz Augusto von Dentz2008-09-221-0/+1
|
* Redefining adapter_get_address to take bdaddr_t as parameter.Alok Barsode2008-09-081-1/+1
|
* Renaming struct adapter to struct btd_adapter.Alok Barsode2008-09-041-46/+46
|
* Moving struct adapter to adapter.cAlok Barsode2008-09-031-28/+0
|
* Adding adapter_has_discov_sessions.Alok Barsode2008-09-031-0/+1
|
* Adding adapter_get_bonding_info.Alok Barsode2008-09-031-0/+1
|
* Adding adapter_free_bonding_request.Alok Barsode2008-09-031-0/+1
|
* Adding adapter_search_active_conn_by_bdaddr andAlok Barsode2008-09-031-0/+4
| | | | adapter_search_active_conn_by_handle.
* Adding adapter_remove_active_conn.Alok Barsode2008-09-031-0/+2
|
* Adding adapter_add_active_conn.Alok Barsode2008-09-031-0/+2
|
* Adding adapter_get_agent.Alok Barsode2008-09-031-0/+1
|
* Moving adapter_mode_changed to adapter.c.Alok Barsode2008-09-031-0/+1
|
* Make DiscoverDevices to create discover sessions.Luiz Augusto von Dentz2008-08-291-6/+4
|
* Merge branch 'for-upstream' of git://gitorious.org/bluez/aloks-cloneMarcel Holtmann2008-08-291-1/+7
|\
| * Adding adapter_remove_oor_devices.Alok Barsode2008-08-291-0/+1
| |
| * Adding adapter_update_oor_devices.Alok Barsode2008-08-291-0/+1
| |
| * Renaming found_device_remove to adapter_remove_found_device andAlok Barsode2008-08-291-0/+1
| | | | | | | | moving it to adapter.c
| * Renaming found_device_add to adapter_add_found_device andAlok Barsode2008-08-291-0/+2
| | | | | | | | moving it to adapter.c
| * Adding adapter_search_found_devices.Alok Barsode2008-08-291-0/+2
| |
| * Removing pinq_idle from struct adapter.Alok Barsode2008-08-291-1/+0
| |
* | Cleanup: declaring mode2str and str2mode to staticClaudio Takahasi2008-08-281-4/+0
|/
* Cleanup: unnecessary includes and defines, moved some declarationsClaudio Takahasi2008-08-261-6/+0
|
* Cleanup: Removed unused function - adapter_auth_request_repliedClaudio Takahasi2008-08-251-1/+0
|
* Remove driver.c driver.h and remove workaround for to force a symbol resolution.Luiz Augusto von Dentz2008-08-181-0/+14
|
* Adding adapter_get_state and adapter_set_state.Alok Barsode2008-08-131-4/+3
| | | | Signed-off-by: Alok Barsode <alok@greatbear.(none)>
* Adding adapter_set_mode and adapter_get_mode.Alok Barsode2008-08-131-0/+2
| | | | Signed-off-by: Alok Barsode <alok.barsode@azingo.com>
* Fix adapter removal.Luiz Augusto von Dentz2008-07-301-7/+3
|
* Move hcid to src directory and rename it to bluetoothdMarcel Holtmann2008-07-291-0/+185