summaryrefslogtreecommitdiff
path: root/health
Commit message (Collapse)AuthorAgeFilesLines
* Fix include paths for health pluginJaikumar Ganesh2011-04-012-2/+2
| | | | Fix the include path of l2cap.h and sdp_lib.h
* Fix uninitialized variable warningLuiz Augusto von Dentz2011-03-291-0/+1
| | | | | | health/mcap.c: In function ‘proc_req_pending’: health/mcap.c:1119:25: error: ‘abrt’ may be used uninitialized in this function make[1]: *** [health/mcap.o] Error 1
* Emit missing signal when data channel is reconnected.Santiago Carot-Nemesio2011-03-271-3/+12
| | | | | Reconnections of data channels should be indicated to others applications by using the appropriate signal.
* Fix memory leak if an error occurs when a data channel is reconnected.Santiago Carot-Nemesio2011-03-271-3/+3
|
* Fix security level for MCAP instances created from HDP pluginSantiago Carot-Nemesio2011-03-231-1/+1
| | | | | | Some health devices without IO capabilities can't connect to MCAP instances when security level is set to HIGH. This patch enables above devices to connect to Health instances avoiding the MITM problem.
* Add more functions for new UUID handlingElvis Pfützenreuter2011-03-151-15/+0
| | | | | | This patch adds more functions that are necessary to handle the new bt_uuid_t type, and moves basic things like byte-swapping functions and uint128_t type to bluetooth.h.
* HDP: reject MDL reconnection with different MTUElvis Pfutzenreuter2011-01-282-2/+24
| | | | | | | | | This patch implements refusal of a MDL reconnection if the new L2CAP connection presents a different MTU. Accordingly to HDP spec. item 3.5. It aims to pass the TC_SNK_HCT_BV_07_C PTS test. (It does not pass yet because PTS itself seems to have issues. See tickets 7212, 7214 and 7244 for details.)
* Get rid of unneeded btd_adapter_get_conn_handle functionJohan Hedberg2010-12-191-6/+4
|
* Create btd_error_invalid_args()Gustavo F. Padovan2010-12-071-40/+14
| | | | | | DBus error handling in BlueZ is a mess. This is the first patch to unify all DBus error handling like in ConnMan and oFono. This unifies all .InvalidArguments errors.
* Fix MDL and MCL reference counting in IO watchersJose Antonio Santos Cadenas2010-11-221-9/+19
| | | | | | | | | When a io_watcher is added to an MDL or an MCL channel, its reference should be incremented because the watcher should keep its own reference the the structure. Also a destroy function is added in order to decrement the reference once the watcher is removed.
* Do not increment mdl reference in reconnectionsSantiago Carot-Nemesio2010-11-221-1/+2
|
* Fix C++ style commentJohan Hedberg2010-11-181-2/+2
|
* Check if the mcl insiede the device is correctly set before use itJose Antonio Santos Cadenas2010-11-181-2/+15
|
* Check if MCAP Instance is already released when a callbacks comes back.Santiago Carot-Nemesio2010-11-181-0/+6
|
* Fixes to echoJose Antonio Santos Cadenas2010-11-181-22/+14
|
* Remove magic number to check ECHO MDEPs in HDPJose Antonio Santos Cadenas2010-11-181-2/+1
|
* Return proper response code if there is an error creating echo channelSantiago Carot-Nemesio2010-11-181-0/+3
|
* Fix dereference to NULL pointers during data channels creationSantiago Carot-Nemesio2010-11-181-4/+9
|
* Code refactorization in MCAPSantiago Carot-Nemesio2010-11-181-4/+2
|
* Remove old reference to mcap session in the name of variablesSantiago Carot-Nemesio2010-11-184-74/+74
|
* Add reference counter to mcap_mdlSantiago Carot-Nemesio2010-11-184-41/+66
|
* Fix message errorJose Antonio Santos Cadenas2010-11-181-2/+2
|
* Set reference counter for mcls to gintJose Antonio Santos Cadenas2010-11-181-1/+1
|
* Add reference counter to mcap_instancesSantiago Carot-Nemesio2010-11-184-6/+33
|
* Fix typos in mcapJose Antonio Santos Cadenas2010-11-181-2/+2
|
* Notify a channel deleted when remote side has already deleted itJose Antonio Santos Cadenas2010-11-182-1/+3
|
* Add missed unrefs for hdp_tmp_dc_dataSantiago Carot-Nemesio2010-11-181-4/+3
|
* Remove MCL's before removing the applicationSantiago Carot-Nemesio2010-11-181-1/+1
| | | | | If you do in the other way you will find freed memory while removing the mcl.
* Add reference counter to hdp_channelJose Antonio Santos Cadenas2010-11-182-32/+88
|
* Add reference counter to hdp_deviceSantiago Carot-Nemesio2010-11-184-7/+38
|
* Add reference counter to hdp_applicationJose Antonio Santos Cadenas2010-11-184-19/+58
|
* Fix segfault in HDP during device re-creationJose Antonio Santos Cadenas2010-11-111-0/+1
|
* Check HealthApplication path before trying to destroy itElvis Pfützenreuter2010-11-111-0/+6
|
* Add Application property to HealthChannelElvis Pfützenreuter2010-11-061-0/+3
| | | | | | | | | | | This patch adds the Application property to HealthChannel, which allows to unambiguously relate a channel to an application. This property is useful when there are several processes interested in accepting HealthChannels but device address is not sufficient criteria to engage upon, or ignore, the ChannelConnected signal. Having the application path allows to determine role and data type, in the context of the process that has created that application.
* Fix coding style and commentElvis Pfützenreuter2010-10-252-2/+2
|
* Fix fd comparisonElvis Pfützenreuter2010-10-251-2/+2
|
* Send a proper configuration when a source doesn't have a first reliableSantiago Carot-Nemesio2010-10-251-1/+1
|
* Fix small coding style issuesElvis Pfützenreuter2010-10-232-15/+17
| | | | Based on http://lxr.linux.no/linux+v2.6.36/Documentation/CodingStyle#L171
* Fix minor coding style issue with variable declarationsJohan Hedberg2010-10-221-10/+5
|
* Check if the channel mode is correct when opening data channelsJose Antonio Santos Cadenas2010-10-211-0/+5
|
* Change data channel mode for incoming connectionsSantiago Carot-Nemesio2010-10-211-0/+29
|
* Enable support to change mode for incoming data channels connectionsSantiago Carot-Nemesio2010-10-212-0/+16
|
* Delete data channels when their device is removed.Jose Antonio Santos Cadenas2010-10-211-2/+5
|
* Close the data channel if remote side changes the configurationSantiago Carot-Nemesio2010-10-211-6/+12
|
* Check l2cap configuration when data channels are connectedSantiago Carot-Nemesio2010-10-211-0/+39
|
* Fix segmentation fault freeing uninitialized pointersSantiago Carot-Nemesio2010-10-211-5/+15
|
* Emit a valid path when main channel is deletedJose Antonio Santos Cadenas2010-10-211-1/+1
|
* Notify main channel when it is locally openedJose Antonio Santos Cadenas2010-10-211-0/+10
|
* Remove obsolete comment from MCAPSantiago Carot-Nemesio2010-10-211-2/+0
|
* Receive an string instead of an integer for ChannelTypeJose Antonio Santos Cadenas2010-10-211-5/+10
|