Home | History | Annotate | Download | only in rfcomm

Lines Matching refs:dlci

109  * DLCI for the connection is (scn * 2 + 1) if client originates connection on
111 * For the server DLCI can be changed later if client will be calling it using
112 * (scn * 2 + 1) dlci.
131 /* multiplexer channel DLCI should be odd */
132 uint8_t dlci;
135 dlci = static_cast<uint8_t>((scn << 1) + 1);
137 dlci = (scn << 1);
141 /* do not allow the same (dlci, bd_addr) to be opened twice by application */
144 p_port = port_find_port(dlci, bd_addr);
155 << ", uuid=" << loghex(uuid) << ", dlci=" << +dlci
163 p_port = port_allocate_port(dlci, bd_addr);
168 << ", dlci=" << +dlci;
233 << ", dlci=" << std::to_string(dlci)
1009 RFCOMM_LineStatusReq(p_port->rfc.p_mcb, p_port->dlci, errors);
1328 RFCOMM_DataReq(p_port->rfc.p_mcb, p_port->dlci, p_buf);