linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Pull request git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream
@ 2010-10-11 12:25 Jose Antonio Santos Cadenas
  2010-10-11 21:31 ` Johan Hedberg
  0 siblings, 1 reply; 15+ messages in thread
From: Jose Antonio Santos Cadenas @ 2010-10-11 12:25 UTC (permalink / raw)
  To: linux-bluetooth

The following changes since commit 646f0c7e6b557c5413825ce7b04bee52bf0129e8:

  Move remote name and version requests to hciops (2010-10-10 22:44:25 +0100)

are available in the git repository at:
  git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream

José Antonio Santos Cadenas (6):
      Remove mdl_conn from struct hdp_channel
      Remove app paramter from hdp_establish_mcl, it is not needed
      Imcoming connection in control channel should be ERTM
      Fix multiple emission of main channel property signal.
      Return MCAP_MDL_BUSY when health channel can't be created
      Implement callback for responding echo petitions

Santiago Carot-Nemesio (6):
      Add a new function to create channels
      Process request of of echo channels creation
      Correctly notify the deletion of the reliable data channel
      Add extra checks for avoid notifiying incoming echo channels
      Delete all channels DBus interface when the instance is removed
      Check first reliable configuration during channel creation

 health/hdp.c       |  249 +++++++++++++++++++++++++++++++++++----------------
 health/hdp_types.h |    3 +-
 health/hdp_util.c  |    3 -
 health/hdp_util.h  |    1 -
 health/mcap.c      |    1 +
 5 files changed, 174 insertions(+), 83 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Pull request git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream
@ 2010-10-14 10:57 Jose Antonio Santos Cadenas
  2010-10-14 11:15 ` Johan Hedberg
  0 siblings, 1 reply; 15+ messages in thread
From: Jose Antonio Santos Cadenas @ 2010-10-14 10:57 UTC (permalink / raw)
  To: linux-bluetooth

The following changes since commit 6b9deca15d0824ad5b3c38f8c0dd3a3c482572ea:

  TODO: Device Name Characteristic for Low Energy (2010-10-13 22:26:59 +0300)

are available in the git repository at:
  git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream

José Antonio Santos Cadenas (7):
      Connect echo channel
      Initial steps to send echo data
      Generate random echo packet
      Create a function for closing mcl correctly
      Notify channel deletion correctly
      Separate private echo data from data channels
      Add initial support for deleting an echo channel

Santiago Carot-Nemesio (8):
      Add support to initiate echo
      Remove unnecessary variable
      Set watcher to check echo response
      Check echo response
      Add timeout to wait for echo reply
      Abort echo channel if connection was not successful
      Remove MDL when delete operation fails with INVALID_MDLID error
      Remove unnecessary function

 health/hdp.c       |  431 +++++++++++++++++++++++++++++++++++++++++-----------
 health/hdp_types.h |    5 +-
 health/mcap.c      |   14 ++-
 3 files changed, 361 insertions(+), 89 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Pull request git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream
@ 2010-10-21  7:52 Jose Antonio Santos Cadenas
  2010-10-22 13:43 ` Johan Hedberg
  0 siblings, 1 reply; 15+ messages in thread
From: Jose Antonio Santos Cadenas @ 2010-10-21  7:52 UTC (permalink / raw)
  To: linux-bluetooth

The following changes since commit a4b1673b878a358d2492f24b46e92ea36d8f8bbf:

  Fix hidd to use ServiceName attribute for device name (2010-10-20
13:37:36 +0300)

are available in the git repository at:
  git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream

José Antonio Santos Cadenas (6):
      Receive an string instead of an integer for ChannelType
      Modify test-health script to make it more interactive
      Notify main channel when it is locally opened
      Emit a valid path when main channel is deleted
      Delete data channels when their device is removed.
      Check if the channel mode is correct when opening data channels

Santiago Carot-Nemesio (6):
      Remove obsolete comment from MCAP
      Fix segmentation fault freeing uninitialized pointers
      Check l2cap configuration when data channels are connected
      Close the data channel if remote side changes the configuration
      Enable support to change mode for incoming data channels connections
      Change data channel mode for incoming connections

 health/hdp.c      |  106 +++++++++++++++++++++++++--
 health/hdp_util.c |   35 +++++++---
 health/mcap.c     |   15 ++++-
 health/mcap_lib.h |    3 +
 test/test-health  |  207 +++++++++++++++++++++++++++++++++++++++++++++++++++--
 5 files changed, 340 insertions(+), 26 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Pull request git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream
@ 2010-11-18 14:53 Santiago Carot-Nemesio
  2010-11-18 15:03 ` Johan Hedberg
  0 siblings, 1 reply; 15+ messages in thread
From: Santiago Carot-Nemesio @ 2010-11-18 14:53 UTC (permalink / raw)
  To: linux-bluetooth

  Fix typos in adapter documentation (2010-11-16 13:39:43 +0000)

are available in the git repository at:
  git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream

José Antonio Santos Cadenas (9):
      Add reference counter to hdp_application
      Add reference counter to hdp_channel
      Notify a channel deleted when remote side has already deleted it
      Fix typos in mcap
      Set reference counter for mcls to gint
      Fix message error
      Remove magic number to check ECHO MDEPs in HDP
      Fixes to echo
      Check if the mcl insiede the device is correctly set before use it

Santiago Carot-Nemesio (10):
      Add reference counter to hdp_device
      Remove MCL's before removing the application
      Add missed unrefs for hdp_tmp_dc_data
      Add reference counter to mcap_instances
      Add reference counter to mcap_mdl
      Remove old reference to mcap session in the name of variables
      Code refactorization in MCAP
      Fix dereference to NULL pointers during data channels creation
      Return proper response code if there is an error creating echo channel
      Check if MCAP Instance is already released when a callbacks comes back.

 health/hdp.c           |  266 ++++++++++++++++++++++++++++++++----------------
 health/hdp_types.h     |    4 +
 health/hdp_util.c      |   55 ++++++++++-
 health/hdp_util.h      |    8 ++
 health/mcap.c          |  242 +++++++++++++++++++++++++------------------
 health/mcap_internal.h |    9 +-
 health/mcap_lib.h      |   13 ++-
 health/mcap_sync.c     |   22 ++--
 8 files changed, 407 insertions(+), 212 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2010-11-18 15:03 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-11 12:25 Pull request git://gitorious.org/bluez-mcap-hdp/mcap-hdp.git for_upstream Jose Antonio Santos Cadenas
2010-10-11 21:31 ` Johan Hedberg
2010-10-11 22:25   ` Jose Antonio Santos Cadenas
2010-10-11 23:23     ` Jose Antonio Santos Cadenas
2010-10-12  9:35     ` Johan Hedberg
2010-10-12  9:57       ` Jose Antonio Santos Cadenas
2010-10-12 10:02       ` Jose Antonio Santos Cadenas
2010-10-12 10:10         ` Jose Antonio Santos Cadenas
2010-10-12 10:15           ` Johan Hedberg
  -- strict thread matches above, loose matches on Subject: below --
2010-10-14 10:57 Jose Antonio Santos Cadenas
2010-10-14 11:15 ` Johan Hedberg
2010-10-21  7:52 Jose Antonio Santos Cadenas
2010-10-22 13:43 ` Johan Hedberg
2010-11-18 14:53 Santiago Carot-Nemesio
2010-11-18 15:03 ` Johan Hedberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).