Home | History | Annotate | Download | only in rfcomm

Lines Matching refs:pn

224     *p_data++ = rfc_cb.rfc.rx_frame.u.pn.priority;
232 /* Total length is sizeof PN data + mx header 2 */
649 p_rx_frame->u.pn.frame_type = *p_data & RFCOMM_PN_FRAME_TYPE_MASK;
650 p_rx_frame->u.pn.conv_layer = *p_data++ & RFCOMM_PN_CONV_LAYER_MASK;
651 p_rx_frame->u.pn.priority = *p_data++ & RFCOMM_PN_PRIORITY_MASK;
652 p_rx_frame->u.pn.t1 = *p_data++;
653 p_rx_frame->u.pn.mtu = *p_data + (*(p_data + 1) << 8);
655 p_rx_frame->u.pn.n2 = *p_data++;
656 p_rx_frame->u.pn.k = *p_data++ & RFCOMM_PN_K_MASK;
659 (p_rx_frame->u.pn.mtu < RFCOMM_MIN_MTU) ||
660 (p_rx_frame->u.pn.mtu > RFCOMM_MAX_MTU)) {
661 RFCOMM_TRACE_ERROR("Bad PN frame");