Home | History | Annotate | Download | only in bnep

Lines Matching refs:p_cfg

61 static void bnep_config_ind (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
62 static void bnep_config_cfm (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg);
216 static void bnep_config_ind (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg)
231 if ((!p_cfg->mtu_present) || (p_cfg->mtu < BNEP_MIN_MTU_SIZE))
233 mtu = p_cfg->mtu;
234 p_cfg->flush_to_present = FALSE;
235 p_cfg->mtu_present = TRUE;
236 p_cfg->mtu = BNEP_MIN_MTU_SIZE;
237 p_cfg->result = result = L2CAP_CFG_UNACCEPTABLE_PARAMS;
241 if (p_cfg->mtu > BNEP_MTU_SIZE)
244 p_bcb->rem_mtu_size = p_cfg->mtu;
247 p_cfg->flush_to_present = FALSE;
248 p_cfg->mtu_present = FALSE;
249 p_cfg->result = result = L2CAP_CFG_OK;
252 L2CA_ConfigRsp (l2cap_cid, p_cfg);
290 static void bnep_config_cfm (UINT16 l2cap_cid, tL2CAP_CFG_INFO *p_cfg)
294 BNEP_TRACE_EVENT ("BNEP - Rcvd cfg cfm, CID: 0x%x Result: %d", l2cap_cid, p_cfg->result);
304 if (p_cfg->result == L2CAP_CFG_OK)