From 43067648194e9d23ac8c070c2f39268e7a0cd95f Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Tue, 27 May 2025 23:35:14 -0400 Subject: [PATCH] BUGFIX: report appropriate LLID when responding to a KMM_HELLO (we currently report NO_SERVICE back to the SU for an OTAR request); --- src/fne/network/callhandler/packetdata/P25PacketData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fne/network/callhandler/packetdata/P25PacketData.cpp b/src/fne/network/callhandler/packetdata/P25PacketData.cpp index 9619f889..97965f0f 100644 --- a/src/fne/network/callhandler/packetdata/P25PacketData.cpp +++ b/src/fne/network/callhandler/packetdata/P25PacketData.cpp @@ -865,7 +865,7 @@ bool P25PacketData::processKMM(RxStatus* status) dataHeader.setAckNeeded(false); dataHeader.setOutbound(true); dataHeader.setSAP(PDUSAP::UNENC_KMM); - dataHeader.setLLId(WUID_ALL); + dataHeader.setLLId(status->llId); dataHeader.setBlocksToFollow(1U); dataHeader.calculateLength(KMM_NO_SERVICE_LENGTH);