port_utils.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. /******************************************************************************
  2. *
  3. * Copyright (C) 1999-2012 Broadcom Corporation
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at:
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. ******************************************************************************/
  18. /******************************************************************************
  19. *
  20. * Port Emulation entity utilities
  21. *
  22. ******************************************************************************/
  23. #include <string.h>
  24. #include "common/bt_target.h"
  25. #include "stack/rfcdefs.h"
  26. #include "stack/port_api.h"
  27. #include "port_int.h"
  28. #include "rfc_int.h"
  29. #include "stack/l2cdefs.h"
  30. #include "btm_int.h"
  31. #include "stack/btu.h"
  32. #include "osi/mutex.h"
  33. #include "osi/allocator.h"
  34. #if (defined RFCOMM_INCLUDED && RFCOMM_INCLUDED == TRUE)
  35. static const tPORT_STATE default_port_pars = {
  36. PORT_BAUD_RATE_9600,
  37. PORT_8_BITS,
  38. PORT_ONESTOPBIT,
  39. PORT_PARITY_NO,
  40. PORT_ODD_PARITY,
  41. PORT_FC_OFF,
  42. 0, /* No rx_char */
  43. PORT_XON_DC1,
  44. PORT_XOFF_DC3,
  45. };
  46. /*******************************************************************************
  47. **
  48. ** Function port_allocate_port
  49. **
  50. ** Description Look through the Port Control Blocks for a free one. Note
  51. ** that one server can open several ports with the same SCN
  52. ** if it can support simulteneous requests from different
  53. ** clients.
  54. **
  55. ** Returns Pointer to the PORT or NULL if not found
  56. **
  57. *******************************************************************************/
  58. tPORT *port_allocate_port (UINT8 dlci, BD_ADDR bd_addr)
  59. {
  60. tPORT *p_port = &rfc_cb.port.port[0];
  61. UINT8 xx, yy;
  62. for (xx = 0, yy = rfc_cb.rfc.last_port + 1; xx < MAX_RFC_PORTS; xx++, yy++) {
  63. if (yy >= MAX_RFC_PORTS) {
  64. yy = 0;
  65. }
  66. p_port = &rfc_cb.port.port[yy];
  67. if (!p_port->in_use) {
  68. memset (p_port, 0, sizeof (tPORT));
  69. p_port->in_use = TRUE;
  70. p_port->inx = yy + 1;
  71. p_port->dlci = dlci;
  72. memcpy (p_port->bd_addr, bd_addr, BD_ADDR_LEN);
  73. /* During the open set default state for the port connection */
  74. port_set_defaults (p_port);
  75. rfc_cb.rfc.last_port = yy;
  76. RFCOMM_TRACE_DEBUG("rfc_cb.port.port[%d]:%p allocated, last_port:%d", yy, p_port, rfc_cb.rfc.last_port);
  77. RFCOMM_TRACE_DEBUG("port_allocate_port:bd_addr:%02x:%02x:%02x:%02x:%02x:%02x",
  78. bd_addr[0], bd_addr[1], bd_addr[2], bd_addr[3], bd_addr[4], bd_addr[5]);
  79. return (p_port);
  80. }
  81. }
  82. /* If here, no free PORT found */
  83. return (NULL);
  84. }
  85. /*******************************************************************************
  86. **
  87. ** Function port_set_defaults
  88. **
  89. ** Description Set defualt port parameters
  90. **
  91. **
  92. *******************************************************************************/
  93. void port_set_defaults (tPORT *p_port)
  94. {
  95. p_port->ev_mask = 0;
  96. p_port->p_callback = NULL;
  97. p_port->port_ctrl = 0;
  98. p_port->error = 0;
  99. p_port->line_status = 0;
  100. p_port->rx_flag_ev_pending = FALSE;
  101. p_port->peer_mtu = RFCOMM_DEFAULT_MTU;
  102. p_port->user_port_pars = default_port_pars;
  103. p_port->peer_port_pars = default_port_pars;
  104. p_port->credit_tx = 0;
  105. p_port->credit_rx = 0;
  106. /* p_port->credit_rx_max = PORT_CREDIT_RX_MAX; Determined later */
  107. /* p_port->credit_rx_low = PORT_CREDIT_RX_LOW; Determined later */
  108. memset (&p_port->local_ctrl, 0, sizeof (p_port->local_ctrl));
  109. memset (&p_port->peer_ctrl, 0, sizeof (p_port->peer_ctrl));
  110. memset (&p_port->rx, 0, sizeof (p_port->rx));
  111. memset (&p_port->tx, 0, sizeof (p_port->tx));
  112. p_port->tx.queue = fixed_queue_new(QUEUE_SIZE_MAX);
  113. p_port->rx.queue = fixed_queue_new(QUEUE_SIZE_MAX);
  114. }
  115. /*******************************************************************************
  116. **
  117. ** Function port_select_mtu
  118. **
  119. ** Description Select MTU which will best serve connection from our
  120. ** point of view.
  121. ** If our device is 1.2 or lower we calculate how many DH5s
  122. ** fit into 1 RFCOMM buffer.
  123. **
  124. **
  125. *******************************************************************************/
  126. void port_select_mtu (tPORT *p_port)
  127. {
  128. UINT16 packet_size;
  129. /* Will select MTU only if application did not setup something */
  130. if (p_port->mtu == 0) {
  131. /* find packet size which connection supports */
  132. packet_size = btm_get_max_packet_size (p_port->bd_addr);
  133. if (packet_size == 0) {
  134. /* something is very wrong */
  135. RFCOMM_TRACE_WARNING ("port_select_mtu bad packet size");
  136. p_port->mtu = RFCOMM_DEFAULT_MTU;
  137. } else {
  138. /* We try to negotiate MTU that each packet can be split into whole
  139. number of max packets. For example if link is 1.2 max packet size is 339 bytes.
  140. At first calculate how many whole packets it is. MAX L2CAP is 1691 + 4 overhead.
  141. 1695, that will be 5 Dh5 packets. Now maximum RFCOMM packet is
  142. 5 * 339 = 1695. Minus 4 bytes L2CAP header 1691. Minus RFCOMM 6 bytes header overhead 1685
  143. For EDR 2.0 packet size is 1027. So we better send RFCOMM packet as 1 3DH5 packet
  144. 1 * 1027 = 1027. Minus 4 bytes L2CAP header 1023. Minus RFCOMM 6 bytes header overhead 1017 */
  145. if ((L2CAP_MTU_SIZE + L2CAP_PKT_OVERHEAD) >= packet_size) {
  146. p_port->mtu = ((L2CAP_MTU_SIZE + L2CAP_PKT_OVERHEAD) / packet_size * packet_size) - RFCOMM_DATA_OVERHEAD - L2CAP_PKT_OVERHEAD;
  147. RFCOMM_TRACE_DEBUG ("port_select_mtu selected %d based on connection speed", p_port->mtu);
  148. } else {
  149. p_port->mtu = L2CAP_MTU_SIZE - RFCOMM_DATA_OVERHEAD;
  150. RFCOMM_TRACE_DEBUG ("port_select_mtu selected %d based on l2cap PDU size", p_port->mtu);
  151. }
  152. }
  153. } else {
  154. RFCOMM_TRACE_DEBUG ("port_select_mtu application selected %d", p_port->mtu);
  155. }
  156. p_port->credit_rx_max = (PORT_RX_HIGH_WM / p_port->mtu);
  157. if ( p_port->credit_rx_max > PORT_RX_BUF_HIGH_WM ) {
  158. p_port->credit_rx_max = PORT_RX_BUF_HIGH_WM;
  159. }
  160. p_port->credit_rx_low = (PORT_RX_LOW_WM / p_port->mtu);
  161. if ( p_port->credit_rx_low > PORT_RX_BUF_LOW_WM ) {
  162. p_port->credit_rx_low = PORT_RX_BUF_LOW_WM;
  163. }
  164. p_port->rx_buf_critical = (PORT_RX_CRITICAL_WM / p_port->mtu);
  165. if ( p_port->rx_buf_critical > PORT_RX_BUF_CRITICAL_WM ) {
  166. p_port->rx_buf_critical = PORT_RX_BUF_CRITICAL_WM;
  167. }
  168. RFCOMM_TRACE_DEBUG ("port_select_mtu credit_rx_max %d, credit_rx_low %d, rx_buf_critical %d",
  169. p_port->credit_rx_max, p_port->credit_rx_low, p_port->rx_buf_critical);
  170. }
  171. /*******************************************************************************
  172. **
  173. ** Function port_release_port
  174. **
  175. ** Description Release port infor control block.
  176. **
  177. ** Returns Pointer to the PORT or NULL if not found
  178. **
  179. *******************************************************************************/
  180. void port_release_port (tPORT *p_port)
  181. {
  182. BT_HDR *p_buf;
  183. UINT32 mask;
  184. tPORT_CALLBACK *p_port_cb;
  185. tPORT_STATE user_port_pars;
  186. osi_mutex_global_lock();
  187. RFCOMM_TRACE_DEBUG("port_release_port, p_port:%p", p_port);
  188. if (p_port->rx.queue != NULL) {
  189. while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_port->rx.queue, 0)) != NULL) {
  190. osi_free(p_buf);
  191. }
  192. }
  193. p_port->rx.queue_size = 0;
  194. if (p_port->tx.queue != NULL) {
  195. while ((p_buf = (BT_HDR *)fixed_queue_dequeue(p_port->tx.queue, 0)) != NULL) {
  196. osi_free(p_buf);
  197. }
  198. }
  199. p_port->tx.queue_size = 0;
  200. osi_mutex_global_unlock();
  201. p_port->state = PORT_STATE_CLOSED;
  202. if (p_port->rfc.state == RFC_STATE_CLOSED) {
  203. RFCOMM_TRACE_DEBUG ("rfc_port_closed DONE");
  204. if (p_port->rfc.p_mcb) {
  205. p_port->rfc.p_mcb->port_inx[p_port->dlci] = 0;
  206. /* If there are no more ports opened on this MCB release it */
  207. rfc_check_mcb_active (p_port->rfc.p_mcb);
  208. }
  209. rfc_port_timer_stop (p_port);
  210. fixed_queue_free(p_port->tx.queue, NULL);
  211. p_port->tx.queue = NULL;
  212. fixed_queue_free(p_port->rx.queue, NULL);
  213. p_port->rx.queue = NULL;
  214. RFCOMM_TRACE_DEBUG ("port_release_port:p_port->keep_port_handle:%d", p_port->keep_port_handle);
  215. if ( p_port->keep_port_handle ) {
  216. RFCOMM_TRACE_DEBUG ("port_release_port:Initialize handle:%d", p_port->inx);
  217. /* save event mask and callback */
  218. mask = p_port->ev_mask;
  219. p_port_cb = p_port->p_callback;
  220. user_port_pars = p_port->user_port_pars;
  221. port_set_defaults(p_port);
  222. /* restore */
  223. p_port->ev_mask = mask;
  224. p_port->p_callback = p_port_cb;
  225. p_port->user_port_pars = user_port_pars;
  226. p_port->mtu = p_port->keep_mtu;
  227. p_port->state = PORT_STATE_OPENING;
  228. p_port->rfc.p_mcb = NULL;
  229. if (p_port->is_server) {
  230. p_port->dlci &= 0xfe;
  231. }
  232. p_port->local_ctrl.modem_signal = p_port->default_signal_state;
  233. memcpy (p_port->bd_addr, BT_BD_ANY, BD_ADDR_LEN);
  234. } else {
  235. RFCOMM_TRACE_DEBUG ("port_release_port:Clean-up handle:%d", p_port->inx);
  236. rfc_port_timer_free (p_port);
  237. memset (p_port, 0, sizeof (tPORT));
  238. }
  239. }
  240. }
  241. /*******************************************************************************
  242. **
  243. ** Function port_find_mcb
  244. **
  245. ** Description This function checks if connection exists to device with
  246. ** the BD_ADDR.
  247. **
  248. *******************************************************************************/
  249. tRFC_MCB *port_find_mcb (BD_ADDR bd_addr)
  250. {
  251. int i;
  252. for (i = 0; i < MAX_BD_CONNECTIONS; i++) {
  253. if ((rfc_cb.port.rfc_mcb[i].state != RFC_MX_STATE_IDLE)
  254. && !memcmp (rfc_cb.port.rfc_mcb[i].bd_addr, bd_addr, BD_ADDR_LEN)) {
  255. /* Multiplexer channel found do not change anything */
  256. RFCOMM_TRACE_DEBUG("port_find_mcb: found bd_addr:%02x:%02x:%02x:%02x:%02x:%02x",
  257. bd_addr[0], bd_addr[1], bd_addr[2], bd_addr[3], bd_addr[4], bd_addr[5]);
  258. RFCOMM_TRACE_DEBUG("port_find_mcb: rfc_cb.port.rfc_mcb:index:%d, %p, lcid:%d",
  259. i, &rfc_cb.port.rfc_mcb[i], rfc_cb.port.rfc_mcb[i].lcid);
  260. return (&rfc_cb.port.rfc_mcb[i]);
  261. }
  262. }
  263. RFCOMM_TRACE_DEBUG("port_find_mcb: not found, bd_addr:%02x:%02x:%02x:%02x:%02x:%02x",
  264. bd_addr[0], bd_addr[1], bd_addr[2], bd_addr[3], bd_addr[4], bd_addr[5]);
  265. return (NULL);
  266. }
  267. /*******************************************************************************
  268. **
  269. ** Function port_find_mcb_dlci_port
  270. **
  271. ** Description Find port on the multiplexer channel based on DLCI. If
  272. ** this port with DLCI not found try to use even DLCI. This
  273. ** is for the case when client is establishing connection on
  274. ** none-initiator MCB.
  275. **
  276. ** Returns Pointer to the PORT or NULL if not found
  277. **
  278. *******************************************************************************/
  279. tPORT *port_find_mcb_dlci_port (tRFC_MCB *p_mcb, UINT8 dlci)
  280. {
  281. UINT8 inx;
  282. if (!p_mcb) {
  283. return (NULL);
  284. }
  285. if (dlci > RFCOMM_MAX_DLCI) {
  286. return (NULL);
  287. }
  288. inx = p_mcb->port_inx[dlci];
  289. if (inx == 0) {
  290. RFCOMM_TRACE_DEBUG("port_find_mcb_dlci_port: p_mcb:%p, port_inx[dlci:%d] is 0", p_mcb, dlci);
  291. return (NULL);
  292. } else {
  293. return (&rfc_cb.port.port[inx - 1]);
  294. }
  295. }
  296. /*******************************************************************************
  297. **
  298. ** Function port_find_dlci_port
  299. **
  300. ** Description Find port with DLCI not assigned to multiplexer channel
  301. **
  302. ** Returns Pointer to the PORT or NULL if not found
  303. **
  304. *******************************************************************************/
  305. tPORT *port_find_dlci_port (UINT8 dlci)
  306. {
  307. UINT16 i;
  308. tPORT *p_port;
  309. for (i = 0; i < MAX_RFC_PORTS; i++) {
  310. p_port = &rfc_cb.port.port[i];
  311. if (p_port->in_use && (p_port->rfc.p_mcb == NULL)) {
  312. if (p_port->dlci == dlci) {
  313. return (p_port);
  314. } else if ((dlci & 0x01) && (p_port->dlci == (dlci - 1))) {
  315. p_port->dlci++;
  316. return (p_port);
  317. }
  318. }
  319. }
  320. return (NULL);
  321. }
  322. /*******************************************************************************
  323. **
  324. ** Function port_find_port
  325. **
  326. ** Description Find port with DLCI, BD_ADDR
  327. **
  328. ** Returns Pointer to the PORT or NULL if not found
  329. **
  330. *******************************************************************************/
  331. tPORT *port_find_port (UINT8 dlci, BD_ADDR bd_addr)
  332. {
  333. UINT16 i;
  334. tPORT *p_port;
  335. for (i = 0; i < MAX_RFC_PORTS; i++) {
  336. p_port = &rfc_cb.port.port[i];
  337. if (p_port->in_use
  338. && (p_port->dlci == dlci)
  339. && !memcmp (p_port->bd_addr, bd_addr, BD_ADDR_LEN)) {
  340. return (p_port);
  341. }
  342. }
  343. return (NULL);
  344. }
  345. /*******************************************************************************
  346. **
  347. ** Function port_flow_control_user
  348. **
  349. ** Description Check the current user flow control and if necessary return
  350. ** events to be send to the user based on the user's specified
  351. ** flow control type.
  352. **
  353. ** Returns event mask to be returned to the application
  354. **
  355. *******************************************************************************/
  356. UINT32 port_flow_control_user (tPORT *p_port)
  357. {
  358. UINT32 event = 0;
  359. /* Flow control to the user can be caused by flow controlling by the peer */
  360. /* (FlowInd, or flow control by the peer RFCOMM (Fcon) or internally if */
  361. /* tx_queue is full */
  362. BOOLEAN fc = p_port->tx.peer_fc
  363. || !p_port->rfc.p_mcb
  364. || !p_port->rfc.p_mcb->peer_ready
  365. || (p_port->tx.queue_size > PORT_TX_HIGH_WM)
  366. || (fixed_queue_length(p_port->tx.queue) > PORT_TX_BUF_HIGH_WM);
  367. if (p_port->tx.user_fc == fc) {
  368. return (0);
  369. }
  370. p_port->tx.user_fc = fc;
  371. if (fc) {
  372. event = PORT_EV_FC;
  373. } else {
  374. event = PORT_EV_FC | PORT_EV_FCS;
  375. }
  376. return (event);
  377. }
  378. /*******************************************************************************
  379. **
  380. ** Function port_get_signal_changes
  381. **
  382. ** Description Check modem signals that has been changed
  383. **
  384. ** Returns event mask to be returned to the application
  385. **
  386. *******************************************************************************/
  387. UINT32 port_get_signal_changes (tPORT *p_port, UINT8 old_signals, UINT8 signal)
  388. {
  389. UINT8 changed_signals = (signal ^ old_signals);
  390. UINT32 events = 0;
  391. if (changed_signals & PORT_DTRDSR_ON) {
  392. events |= PORT_EV_DSR;
  393. if (signal & PORT_DTRDSR_ON) {
  394. events |= PORT_EV_DSRS;
  395. }
  396. }
  397. if (changed_signals & PORT_CTSRTS_ON) {
  398. events |= PORT_EV_CTS;
  399. if (signal & PORT_CTSRTS_ON) {
  400. events |= PORT_EV_CTSS;
  401. }
  402. }
  403. if (changed_signals & PORT_RING_ON) {
  404. events |= PORT_EV_RING;
  405. }
  406. if (changed_signals & PORT_DCD_ON) {
  407. events |= PORT_EV_RLSD;
  408. if (signal & PORT_DCD_ON) {
  409. events |= PORT_EV_RLSDS;
  410. }
  411. }
  412. return (p_port->ev_mask & events);
  413. }
  414. /*******************************************************************************
  415. **
  416. ** Function port_flow_control_peer
  417. **
  418. ** Description Send flow control messages to the peer for both enabling
  419. ** and disabling flow control, for both credit-based and
  420. ** TS 07.10 flow control mechanisms.
  421. **
  422. ** Returns nothing
  423. **
  424. *******************************************************************************/
  425. void port_flow_control_peer(tPORT *p_port, BOOLEAN enable, UINT16 count)
  426. {
  427. if (!p_port->rfc.p_mcb) {
  428. return;
  429. }
  430. /* If using credit based flow control */
  431. if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) {
  432. /* if want to enable flow from peer */
  433. if (enable) {
  434. /* update rx credits */
  435. if (count > p_port->credit_rx) {
  436. p_port->credit_rx = 0;
  437. } else {
  438. p_port->credit_rx -= count;
  439. }
  440. /* If credit count is less than low credit watermark, and user */
  441. /* did not force flow control, send a credit update */
  442. /* There might be a special case when we just adjusted rx_max */
  443. if ((p_port->credit_rx <= p_port->credit_rx_low)
  444. && !p_port->rx.user_fc
  445. && (p_port->credit_rx_max > p_port->credit_rx)) {
  446. rfc_send_credit(p_port->rfc.p_mcb, p_port->dlci,
  447. (UINT8) (p_port->credit_rx_max - p_port->credit_rx));
  448. RFCOMM_TRACE_DEBUG("send credit: max %d, rx %d, count %d", p_port->credit_rx_max, p_port->credit_rx, count);
  449. p_port->credit_rx = p_port->credit_rx_max;
  450. p_port->rx.peer_fc = FALSE;
  451. } else {
  452. RFCOMM_TRACE_DEBUG("credit: max %d, rx %d, low %d", p_port->credit_rx_max, p_port->credit_rx, p_port->credit_rx_low);
  453. }
  454. }
  455. /* else want to disable flow from peer */
  456. else {
  457. /* if client registered data callback, just do what they want */
  458. if (p_port->p_data_callback || p_port->p_data_co_callback) {
  459. p_port->rx.peer_fc = TRUE;
  460. }
  461. /* if queue count reached credit rx max, set peer fc */
  462. else if (fixed_queue_length(p_port->rx.queue) >= p_port->credit_rx_max) {
  463. p_port->rx.peer_fc = TRUE;
  464. }
  465. }
  466. }
  467. /* else using TS 07.10 flow control */
  468. else {
  469. /* if want to enable flow from peer */
  470. if (enable) {
  471. /* If rfcomm suspended traffic from the peer based on the rx_queue_size */
  472. /* check if it can be resumed now */
  473. if (p_port->rx.peer_fc
  474. && (p_port->rx.queue_size < PORT_RX_LOW_WM)
  475. && (fixed_queue_length(p_port->rx.queue) < PORT_RX_BUF_LOW_WM)) {
  476. p_port->rx.peer_fc = FALSE;
  477. /* If user did not force flow control allow traffic now */
  478. if (!p_port->rx.user_fc) {
  479. RFCOMM_FlowReq (p_port->rfc.p_mcb, p_port->dlci, TRUE);
  480. }
  481. }
  482. }
  483. /* else want to disable flow from peer */
  484. else {
  485. /* if client registered data callback, just do what they want */
  486. if (p_port->p_data_callback || p_port->p_data_co_callback) {
  487. p_port->rx.peer_fc = TRUE;
  488. RFCOMM_FlowReq (p_port->rfc.p_mcb, p_port->dlci, FALSE);
  489. }
  490. /* Check the size of the rx queue. If it exceeds certain */
  491. /* level and flow control has not been sent to the peer do it now */
  492. else if ( ((p_port->rx.queue_size > PORT_RX_HIGH_WM)
  493. || (fixed_queue_length(p_port->rx.queue) > PORT_RX_BUF_HIGH_WM))
  494. && !p_port->rx.peer_fc) {
  495. RFCOMM_TRACE_EVENT ("PORT_DataInd Data reached HW. Sending FC set.");
  496. p_port->rx.peer_fc = TRUE;
  497. RFCOMM_FlowReq (p_port->rfc.p_mcb, p_port->dlci, FALSE);
  498. }
  499. }
  500. }
  501. }
  502. #endif ///(defined RFCOMM_INCLUDED && RFCOMM_INCLUDED == TRUE)