| 12345678910111213141516171819202122232425 | //go:build windows// +build windowspackage probingimport (	"golang.org/x/net/ipv4"	"golang.org/x/net/ipv6")// Returns the length of an ICMP message, plus the IP packet header.func (p *Pinger) getMessageLength() int {	if p.ipv4 {		return p.Size + 8 + ipv4.HeaderLen	}	return p.Size + 8 + ipv6.HeaderLen}// Attempts to match the ID of an ICMP packet.func (p *Pinger) matchID(ID int) bool {	if ID != p.id {		return false	}	return true}
 |