From a933886537195e97d970ede3c7b89468ba016d5e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 15 Feb 2016 16:05:59 -0500 Subject: [PATCH] Fix build on Windows --- limelight-common/PlatformSockets.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/limelight-common/PlatformSockets.h b/limelight-common/PlatformSockets.h index 8157f77..f9fbdb6 100644 --- a/limelight-common/PlatformSockets.h +++ b/limelight-common/PlatformSockets.h @@ -9,6 +9,8 @@ #define SetLastSocketError(x) WSASetLastError(x) #define LastSocketError() WSAGetLastError() +#define SHUT_RDWR SD_BOTH + typedef int SOCK_RET; typedef int SOCKADDR_LEN;