From b3de6e66e22af3539ea94a71fb350c595c1fde4f Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath <[email protected]> Date: Mon, 11 Jul 2022 11:54:45 +0530 Subject: [PATCH] headers: Add ICMPV6_ECHO_REPLY declaration in ipexport.h
Signed-off-by: Biswapriyo Nath <[email protected]> --- mingw-w64-headers/include/ipexport.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mingw-w64-headers/include/ipexport.h b/mingw-w64-headers/include/ipexport.h index fef0fda..67b7147 100644 --- a/mingw-w64-headers/include/ipexport.h +++ b/mingw-w64-headers/include/ipexport.h @@ -102,6 +102,15 @@ typedef struct _IPV6_ADDRESS_EX { ULONG sin6_scope_id; } IPV6_ADDRESS_EX, *PIPV6_ADDRESS_EX; +typedef struct icmpv6_echo_reply_lh { + IPV6_ADDRESS_EX Address; + ULONG Status; + unsigned int RoundTripTime; +} ICMPV6_ECHO_REPLY_LH, *PICMPV6_ECHO_REPLY_LH; + +typedef ICMPV6_ECHO_REPLY_LH ICMPV6_ECHO_REPLY; +typedef ICMPV6_ECHO_REPLY_LH *PICMPV6_ECHO_REPLY; + #define IP_STATUS_BASE 11000 #define IP_SUCCESS 0 @@ -161,6 +170,7 @@ typedef struct _IPV6_ADDRESS_EX { #define MAX_IP_STATUS IP_GENERAL_FAILURE #define IP_PENDING (IP_STATUS_BASE + 255) +#define IP_FLAG_REVERSE 0x1 #define IP_FLAG_DF 0x2 #define IP_OPT_EOL 0 -- 2.37.0
_______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
