From 10b51a093aec269ae795ee705495d1b927d3a4d8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 14 May 2026 02:31:06 +0000 Subject: [PATCH] fix: add missing Crestron.SimplSharp.CrestronSockets using for SocketStatus in GenericUdpClient Agent-Logs-Url: https://github.com/PepperDash/Essentials/sessions/3662f088-0aba-4d55-a431-00383640d460 Co-authored-by: jonnyarndt <21110580+jonnyarndt@users.noreply.github.com> --- src/PepperDash.Core/Comm/GenericUdpClient.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PepperDash.Core/Comm/GenericUdpClient.cs b/src/PepperDash.Core/Comm/GenericUdpClient.cs index 295a0029..2918e006 100644 --- a/src/PepperDash.Core/Comm/GenericUdpClient.cs +++ b/src/PepperDash.Core/Comm/GenericUdpClient.cs @@ -4,6 +4,7 @@ using System.Text; using System.Threading; using System.Threading.Tasks; using Crestron.SimplSharp; +using Crestron.SimplSharp.CrestronSockets; using ThreadingTimeout = System.Threading.Timeout; using NetSocketException = System.Net.Sockets.SocketException;