[PATCH 1/4] winsock: Add icmpv6 protocol

Marko Hauptvogel marko.hauptvogel at googlemail.com
Thu Sep 11 14:40:08 CDT 2014


First patchset to implement ICMPv6 functions in iphlpapi. Tests will
come with send() implementation.

---
 include/winsock.h | 2 ++
 1 file changed, 2 insertions(+)

-------------- next part --------------
From e13787e1f0973ca958c501e5a26fc0ad01b02b5b Mon Sep 17 00:00:00 2001
From: Marko Hauptvogel <marko.hauptvogel at googlemail.com>
Date: Sun, 7 Sep 2014 19:01:51 +0200
Subject: winsock: Add icmpv6 protocol

---
 include/winsock.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/winsock.h b/include/winsock.h
index 06e6309..d5c1e0b 100644
--- a/include/winsock.h
+++ b/include/winsock.h
@@ -261,6 +261,7 @@ extern "C" {
 #define IPPROTO_UDP                17
 #define IPPROTO_IDP                22
 #define IPPROTO_IPV6               41
+#define IPPROTO_ICMPV6             58
 #define IPPROTO_ND                 77
 #define IPPROTO_RAW                255
 #define IPPROTO_MAX                256
@@ -273,6 +274,7 @@ extern "C" {
 #define WS_IPPROTO_UDP             17
 #define WS_IPPROTO_IDP             22
 #define WS_IPPROTO_IPV6            41
+#define WS_IPPROTO_ICMPV6          58
 #define WS_IPPROTO_ND              77
 #define WS_IPPROTO_RAW             255
 #define WS_IPPROTO_MAX             256
-- 
2.1.0



More information about the wine-patches mailing list