Home | History | Annotate | Download | only in gatt

Lines Matching refs:p_cfg

53 static void gatt_l2cif_config_ind_cback (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
54 static void gatt_l2cif_config_cfm_cback (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
667 void gatt_l2cif_config_cfm_cback(UINT16 lcid, tL2CAP_CFG_INFO *p_cfg)
679 if (p_cfg->result == L2CAP_CFG_OK)
723 void gatt_l2cif_config_ind_cback(UINT16 lcid, tL2CAP_CFG_INFO *p_cfg)
731 if ( p_cfg->mtu_present &&
732 (p_cfg->mtu >= GATT_MIN_BR_MTU_SIZE && p_cfg->mtu < L2CAP_DEFAULT_MTU))
733 p_tcb->payload_size = p_cfg->mtu;
738 memset(p_cfg, 0, sizeof(tL2CAP_CFG_INFO));
739 p_cfg->result = L2CAP_CFG_OK;
740 L2CA_ConfigRsp(lcid, p_cfg);