Home | History | Annotate | Download | only in rfcomm

Lines Matching refs:p_cfg

52 static void rfc_mx_conf_ind (tRFC_MCB *p_mcb, tL2CAP_CFG_INFO *p_cfg);
53 static void rfc_mx_conf_cnf (tRFC_MCB *p_mcb, tL2CAP_CFG_INFO *p_cfg);
595 static void rfc_mx_conf_cnf (tRFC_MCB *p_mcb, tL2CAP_CFG_INFO *p_cfg)
597 RFCOMM_TRACE_EVENT ("rfc_mx_conf_cnf p_cfg:%08x res:%d ", p_cfg, (p_cfg) ? p_cfg->result : 0);
599 if (p_cfg->result != L2CAP_CFG_OK)
603 PORT_StartCnf (p_mcb, p_cfg->result);
638 static void rfc_mx_conf_ind (tRFC_MCB *p_mcb, tL2CAP_CFG_INFO *p_cfg)
642 if (p_cfg->mtu_present)
643 p_mcb->peer_l2cap_mtu = p_cfg->mtu - RFCOMM_MIN_OFFSET - 1;
647 p_cfg->mtu_present = FALSE;
648 p_cfg->flush_to_present = FALSE;
649 p_cfg->qos_present = FALSE;
651 p_cfg->result = L2CAP_CFG_OK;
653 L2CA_ConfigRsp (p_mcb->lcid, p_cfg);