From 7377c793c687a74012e0ff3ce458eb2d8717ea72 Mon Sep 17 00:00:00 2001 From: database64128 Date: Sat, 15 Mar 2025 16:31:27 +0800 Subject: [PATCH] windows: add cmsghdr and pktinfo structures - CMSGHDR from ws2def.h, corresponds to Cmsghdr in unix - IN_PKTINFO from ws2ipdef.h, corresponds to InetPktinfo in unix - IN6_PKTINFO from ws2ipdef.h, corresponds to Inet6Pktinfo in unix --- windows/types_windows.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/windows/types_windows.go b/windows/types_windows.go index fac0309d08..ad67df2fdb 100644 --- a/windows/types_windows.go +++ b/windows/types_windows.go @@ -1157,6 +1157,22 @@ type WSAMsg struct { Flags uint32 } +type WSACMSGHDR struct { + Len uintptr + Level int32 + Type int32 +} + +type IN_PKTINFO struct { + Addr [4]byte + Ifindex uint32 +} + +type IN6_PKTINFO struct { + Addr [16]byte + Ifindex uint32 +} + // Flags for WSASocket const ( WSA_FLAG_OVERLAPPED = 0x01