From 3feeb8b198d48e5e65b2fc0d7cfb2b037677dd6a Mon Sep 17 00:00:00 2001 From: Gurucharan Shetty Date: Fri, 16 Oct 2015 13:42:46 -0700 Subject: windefs: Redefine INET6_ADDRSTRLEN for Windows. Windows has INET6_ADDRSTRLEN defined as 65 whereas POSIX has it as 46. This difference causes a unit test failure as the test 'tunnel_push_pop' was looking at o/p format based on the length of INET6_ADDRSTRLEN. Signed-off-by: Gurucharan Shetty Acked-by: Joe Stringer --- include/windows/windefs.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/windows') diff --git a/include/windows/windefs.h b/include/windows/windefs.h index 2497c4b74..5137f073c 100644 --- a/include/windows/windefs.h +++ b/include/windows/windefs.h @@ -27,6 +27,9 @@ #pragma comment(lib, "advapi32") +#undef INET6_ADDRSTRLEN +#define INET6_ADDRSTRLEN 46 + #define inline __inline #define __func__ __FUNCTION__ #define ssize_t SSIZE_T -- cgit v1.2.1