Home | History | Annotate | Download | only in rfcomm

Lines Matching refs:pn

254         *p_data++ = rfc_cb.rfc.rx_frame.u.pn.priority;
262 /* Total length is sizeof PN data + mx header 2 */
745 p_rx_frame->u.pn.frame_type = *p_data & RFCOMM_PN_FRAME_TYPE_MASK;
746 p_rx_frame->u.pn.conv_layer = *p_data++ & RFCOMM_PN_CONV_LAYER_MASK;
747 p_rx_frame->u.pn.priority = *p_data++ & RFCOMM_PN_PRIORITY_MASK;
748 p_rx_frame->u.pn.t1 = *p_data++;
749 p_rx_frame->u.pn.mtu = *p_data + (*(p_data + 1) << 8);
751 p_rx_frame->u.pn.n2 = *p_data++;
752 p_rx_frame->u.pn.k = *p_data++ & RFCOMM_PN_K_MASK;
756 || (p_rx_frame->u.pn.mtu < RFCOMM_MIN_MTU)
757 || (p_rx_frame->u.pn.mtu > RFCOMM_MAX_MTU))
759 RFCOMM_TRACE_ERROR0 ("Bad PN frame");