From e3a211b0a5bd1a6b796e806eff13f002de8230f9 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Mon, 10 Apr 2023 12:52:47 -0700 Subject: [PATCH] remove some msgs --- reflector/URFProtocol.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/reflector/URFProtocol.cpp b/reflector/URFProtocol.cpp index 59c5dc9..1fd8865 100644 --- a/reflector/URFProtocol.cpp +++ b/reflector/URFProtocol.cpp @@ -441,16 +441,13 @@ bool CURFProtocol::IsValidKeepAlivePacket(const CBuffer &Buffer, CCallsign *call bool CURFProtocol::IsValidConnectPacket(const CBuffer &Buffer, CCallsign *callsign, char *modules, CVersion *version) { - std::cout << "Checking for valid CONN packet\n"; bool valid; uint8_t magic[] = { 'C','O','N','N' }; if ((Buffer.size() == 40) && (0 == Buffer.Compare(magic, 4)) && (Buffer.data()[36] == 0)) { callsign->CodeIn(Buffer.data()+4); valid = callsign->IsValid(); - std::cout << "Callsign '" << callsign->GetCS() << " is " << (valid ? "valid" : "not valid") << std::endl; *version = CVersion(Buffer.at(37), Buffer.at(38), Buffer.at(39)); - std::cout << *callsign << " version: " << *version << std::endl; if (valid) { memcpy(modules, Buffer.data()+10, 27);