From 308bed4509c6dfae84c7dbd1e828e8e56c9d78e3 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Fri, 24 Feb 2023 15:34:13 -0700 Subject: [PATCH] Add another debug message --- reflector/DExtraProtocol.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reflector/DExtraProtocol.cpp b/reflector/DExtraProtocol.cpp index 9e4c64b..f104690 100644 --- a/reflector/DExtraProtocol.cpp +++ b/reflector/DExtraProtocol.cpp @@ -211,6 +211,11 @@ void CDextraProtocol::HandleQueue(void) // is this client busy ? if ( !client->IsAMaster() && (client->GetReflectorModule() == packet->GetPacketModule()) ) { + if (packet->IsDvHeader()) + { + buffer.Dump("Header packet"); + std::cout << "Is going to " << client->GetCallsign() << " at " << client->GetIp() << std::endl; + } // no, send the packet int n = packet->IsDvHeader() ? 5 : 1; for ( int i = 0; i < n; i++ )