From 1aa1d4869a625d953e70f24c4a272a98ce70c9d6 Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 05:18:44 +0000 Subject: [PATCH] fix(MESHAGEN-006): WinSock headers included unconditionally in WebRTC.cpp --- samples/webrtc/C# Sample/WebRTC.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/webrtc/C# Sample/WebRTC.cpp b/samples/webrtc/C# Sample/WebRTC.cpp index 3ee6d37d2..0f0b29414 100644 --- a/samples/webrtc/C# Sample/WebRTC.cpp +++ b/samples/webrtc/C# Sample/WebRTC.cpp @@ -21,8 +21,10 @@ limitations under the License. #include "stdafx.h" #include "WebRTC.h" +#ifdef WIN32 #include #include +#endif #if defined(WIN32) #define _CRTDBG_MAP_ALLOC @@ -469,4 +471,4 @@ extern "C" return(ILibSCTP_Debug_SetDebugCallback(((void**)connection)[0], debugField, handler)); } #endif -} \ No newline at end of file +}