From a0a9fca81ec47bc3b555c72d4a148d5016f07278 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Mon, 10 Nov 2025 01:37:51 -0500 Subject: [PATCH] fix: remove HMAC verification hash note from sendPing function --- src/OverteClient.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/OverteClient.cpp b/src/OverteClient.cpp index dcafcd8..04aaa74 100644 --- a/src/OverteClient.cpp +++ b/src/OverteClient.cpp @@ -1552,11 +1552,6 @@ void OverteClient::sendPing(int fd, const sockaddr_storage& addr, socklen_t addr // Ping type (0 = local, 1 = public) packet.writeUInt8(0); - // NOTE: Do NOT add HMAC verification hash! - // The domain server adds our node with a null UUID connection secret, - // which means NO HMAC is set up for our node. If we send an HMAC hash, - // the server expects an empty hash and rejects our packet. - const auto& data = packet.getData(); // Debug: show destination address