Home | History | Annotate | Download | only in rfcomm

Lines Matching defs:dlci

71 ** DLCI for the connection is (scn * 2 + 1) if client originates connection on
73 ** For the server DLCI can be changed later if client will be calling it using
74 ** (scn * 2 + 1) dlci.
83 UINT8 dlci;
100 /* multiplexer channel DLCI should be odd */
102 dlci = (scn << 1) + 1;
104 dlci = (scn << 1);
105 RFCOMM_TRACE_API("RFCOMM_CreateConnection(): scn:%d, dlci:%d, is_server:%d mtu:%d, p_mcb:%p",
106 scn, dlci, is_server, mtu, p_mcb);
109 /* do not allow the same (dlci, bd_addr) to be opened twice by application */
110 if (!is_server && ((p_port = port_find_port (dlci, bd_addr)) != NULL))
121 if ((p_port = port_allocate_port (dlci, bd_addr)) == NULL)
126 RFCOMM_TRACE_API("RFCOMM_CreateConnection(): scn:%d, dlci:%d, is_server:%d mtu:%d, p_mcb:%p, p_port:%p",
127 scn, dlci, is_server, mtu, p_mcb, p_port);
148 RFCOMM_TRACE_EVENT ("RFCOMM_CreateConnection dlci:%d signal state:0x%x", dlci, p_port->default_signal_state);
1044 RFCOMM_LineStatusReq (p_port->rfc.p_mcb, p_port->dlci, errors);
1399 RFCOMM_DataReq (p_port->rfc.p_mcb, p_port->dlci, p_buf);