From 12e98954c19b53f6670542e883d8cfc83afb2a66 Mon Sep 17 00:00:00 2001 From: emanuel Date: Mon, 21 Mar 2022 15:41:51 +0000 Subject: [PATCH] Fix CAM send to TX queue --- src/cam.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cam.c b/src/cam.c index 66a69e0..c2c13fb 100644 --- a/src/cam.c +++ b/src/cam.c @@ -774,9 +774,9 @@ void *ca_service(void *fc) { continue; } - it2s_tender_queue_add(facilities->tx_queue, tr_oer, enc.encoded+1, ITSS_TRANSPORT, id, "TR.packet.btp"); + it2s_tender_queue_send(facilities->tx_queue, tr_oer, enc.encoded+1, ITSS_TRANSPORT, id, "TR.packet.btp"); - it2s_tender_queue_add(facilities->tx_queue, fi_oer, enc_fdi.encoded+1, ITSS_APPLICATIONS, id, "FI.message"); + it2s_tender_queue_send(facilities->tx_queue, fi_oer, enc_fdi.encoded+1, ITSS_APPLICATIONS, id, "FI.message"); lightship_reset_timer(facilities->lightship, &facilities->epv);