From 4d2adc3c3af534f21654cce7f3f5d20845336413 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Wed, 18 Oct 2023 15:54:31 -0700 Subject: [PATCH] https://telecominfraproject.atlassian.net/browse/WIFI-7831 Signed-off-by: stephb9959 --- src/RADIUS_Destination.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/RADIUS_Destination.h b/src/RADIUS_Destination.h index dbb465cd..cf9e57ec 100644 --- a/src/RADIUS_Destination.h +++ b/src/RADIUS_Destination.h @@ -696,6 +696,8 @@ namespace OpenWifi { inline bool SendRadiusDataAuthData(const std::string &serialNumber, const unsigned char *buffer, std::size_t size) { poco_trace(Logger_, fmt::format("{}: Sending RADIUS Auth {} bytes.", serialNumber, size)); + std::cout << "Sending RADIUS Auth " << size << " bytes to " << Pool_.authConfig.servers[0].ip << + ":" << Pool_.authConfig.servers[0].port << std::endl; AuthenticationSocketV4_->sendTo(buffer, size, Poco::Net::SocketAddress(Pool_.authConfig.servers[0].ip, Pool_.authConfig.servers[0].port)); return true; }