Home | History | Annotate | Download | only in bnep

Lines Matching refs:mtu

84     /* Initialize the L2CAP configuration. We only care about MTU and flush */
88 bnep_cb.l2cap_my_cfg.mtu = BNEP_MTU_SIZE;
225 UINT16 result, mtu = 0;
236 /* Remember the remote MTU size */
237 if ((!p_cfg->mtu_present) || (p_cfg->mtu < BNEP_MIN_MTU_SIZE))
239 mtu = p_cfg->mtu;
242 p_cfg->mtu = BNEP_MIN_MTU_SIZE;
247 if (p_cfg->mtu > BNEP_MTU_SIZE)
250 p_bcb->rem_mtu_size = p_cfg->mtu;
262 BNEP_TRACE_EVENT ("BNEP - Rcvd cfg ind with bad MTU %d, CID: 0x%x", mtu, l2cap_cid);