From 14fceb2cb654f48d1ef6e3ec9fb51383fa7c83c5 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 31 May 2007 12:08:19 +0200 Subject: [PATCH] include: Fix the definition of MSG_MAXIOVLEN. --- include/winsock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/winsock.h b/include/winsock.h index 80266f241a5..c096d13ec85 100644 --- a/include/winsock.h +++ b/include/winsock.h @@ -791,16 +791,16 @@ typedef struct WS(WSAData) #define MSG_OOB 0x0001 #define MSG_PEEK 0x0002 #define MSG_DONTROUTE 0x0004 -#define MSG_MAXIOVLEN 0x000a #define MSG_PARTIAL 0x8000 +#define MSG_MAXIOVLEN 16 #else /* USE_WS_PREFIX */ #define WS_SOMAXCONN 5 #define WS_MSG_OOB 0x0001 #define WS_MSG_PEEK 0x0002 #define WS_MSG_DONTROUTE 0x0004 -#define WS_MSG_MAXIOVLEN 0x000a #define WS_MSG_PARTIAL 0x8000 +#define WS_MSG_MAXIOVLEN 16 #endif /* USE_WS_PREFIX */ /* -- 2.11.4.GIT