OSDN Git Service

Remove unused API in l2c_api shim
authorHansong Zhang <hsz@google.com>
Wed, 9 Sep 2020 19:33:30 +0000 (12:33 -0700)
committerHansong Zhang <hsz@google.com>
Wed, 9 Sep 2020 19:33:30 +0000 (12:33 -0700)
Bug: 159815595
Tag: #refactor
Test: compile & verify basic functions working
Change-Id: Ieeae2677b6ed300d9878508f18f55a23e54b5f06

main/shim/l2c_api.cc
main/shim/l2c_api.h

index 3719329..3cab1c7 100644 (file)
@@ -179,15 +179,6 @@ bool bluetooth::shim::L2CA_GetPeerLECocConfig(uint16_t lcid,
   return false;
 }
 
-/**
- * Channel Data Writes
- */
-bool bluetooth::shim::L2CA_SetConnectionCallbacks(
-    uint16_t cid, const tL2CAP_APPL_INFO* callbacks) {
-  LOG_INFO("Unsupported API %s", __func__);
-  return false;
-}
-
 uint8_t bluetooth::shim::L2CA_DataWrite(uint16_t cid, BT_HDR* p_data) {
   bool write_success = shim_l2cap.Write(cid, p_data);
   return write_success ? L2CAP_DW_SUCCESS : L2CAP_DW_FAILED;
index 028861f..e28436e 100644 (file)
@@ -203,14 +203,6 @@ bool L2CA_ConnectLECocRsp(const RawAddress& p_bd_addr, uint8_t id,
  ******************************************************************************/
 bool L2CA_GetPeerLECocConfig(uint16_t lcid, tL2CAP_LE_CFG_INFO* peer_cfg);
 
-// This function sets the callback routines for the L2CAP connection referred to
-// by |local_cid|. The callback routines can only be modified for outgoing
-// connections established by |L2CA_ConnectReq| or accepted incoming
-// connections. |callbacks| must not be NULL. This function returns true if the
-// callbacks could be updated, false if not (e.g. |local_cid| was not found).
-bool L2CA_SetConnectionCallbacks(uint16_t local_cid,
-                                 const tL2CAP_APPL_INFO* callbacks);
-
 /*******************************************************************************
  *
  * Function         L2CA_ErtmConnectRsp