From 7129cc30e9737bd71df3f97233160cfbe920d7dd Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 26 Jan 2026 11:47:56 -0500 Subject: [PATCH] remove this -- this was a bad hacky idea and causes trunked sites to lose their minds; --- FneSystemBase.cs | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/FneSystemBase.cs b/FneSystemBase.cs index 03f6f28..09974c9 100644 --- a/FneSystemBase.cs +++ b/FneSystemBase.cs @@ -527,30 +527,6 @@ namespace fnecore peer.SendMaster(FneBase.CreateOpcode(Constants.NET_FUNC_PROTOCOL, Constants.NET_PROTOCOL_SUBFUNC_P25), payload, Constants.RtpCallEndSeq, callData.TxStreamID); } - /// - /// Helper to send a DVM call termination TSDU. - /// - /// - /// - public void SendDVMCallTermination(uint srcId, uint dstId) - { - OSP_DVM_LC_CALL_TERM osp = new OSP_DVM_LC_CALL_TERM(dstId, srcId); - - RemoteCallData callData = new RemoteCallData - { - MFId = P25Defines.P25_MFG_DVM_OCS, - SrcId = srcId, - DstId = dstId, - LCO = P25Defines.LC_CALL_TERM - }; - - byte[] tsbk = new byte[P25Defines.P25_TSBK_LENGTH_BYTES]; - - osp.Encode(ref tsbk); - - SendP25TSBK(callData, tsbk); - } - /// /// Helper to send a P25 TDU message. ///