const net.IPv6len

41 uses

	net (current package)
		addrselect.go#L299: 	if len(ip) != IPv6len {
		addrselect.go#L333: 	ipv6 := len(ip) == IPv6len && ip.To4() == nil
		interface_linux.go#L72: 			case IPv6len:
		interface_linux.go#L194: 			ifa := &IPNet{IP: make(IP, IPv6len), Mask: CIDRMask(int(ifam.Prefixlen), 8*IPv6len)}
		interface_linux.go#L254: 	b := make([]byte, IPv6len)
		ip.go#L23: 	IPv6len = 16
		ip.go#L52: 	p := make(IP, IPv6len)
		ip.go#L78: 	if bits != 8*IPv4len && bits != 8*IPv6len {
		ip.go#L147: 	return len(ip) == IPv6len && ip[0]&0xfe == 0xfc
		ip.go#L155: 	return len(ip) == IPv6len && ip[0] == 0xff
		ip.go#L161: 	return len(ip) == IPv6len && ip[0] == 0xff && ip[1]&0x0f == 0x01
		ip.go#L170: 	return len(ip) == IPv6len && ip[0] == 0xff && ip[1]&0x0f == 0x02
		ip.go#L179: 	return len(ip) == IPv6len && ip[0] == 0xfe && ip[1]&0xc0 == 0x80
		ip.go#L191: 	return (len(ip) == IPv4len || len(ip) == IPv6len) &&
		ip.go#L215: 	if len(ip) == IPv6len &&
		ip.go#L230: 	if len(ip) == IPv6len {
		ip.go#L271: 	if len(mask) == IPv6len && len(ip) == IPv4len && allFF(mask[:12]) {
		ip.go#L274: 	if len(mask) == IPv4len && len(ip) == IPv6len && bytealg.Equal(ip[:12], v4InV6Prefix) {
		ip.go#L340: 	if len(p) != IPv6len {
		ip.go#L347: 	for i := 0; i < IPv6len; i += 2 {
		ip.go#L349: 		for j < IPv6len && p[j] == 0 && p[j+1] == 0 {
		ip.go#L368: 	for i := 0; i < IPv6len; i += 2 {
		ip.go#L372: 			if i >= IPv6len {
		ip.go#L407: 	if len(ip) != IPv4len && len(ip) != IPv6len {
		ip.go#L436: 	if len(ip) == IPv4len && len(x) == IPv6len {
		ip.go#L439: 	if len(ip) == IPv6len && len(x) == IPv4len {
		ip.go#L500: 		if len(ip) != IPv6len {
		ip.go#L510: 	case IPv6len:
		ip.go#L603: 	ip = make(IP, IPv6len)
		ip.go#L618: 	for i < IPv6len {
		ip.go#L627: 			if ellipsis < 0 && i != IPv6len-IPv4len {
		ip.go#L631: 			if i+IPv4len > IPv6len {
		ip.go#L684: 	if i < IPv6len {
		ip.go#L688: 		n := IPv6len - i
		ip.go#L750: 		iplen = IPv6len
		ipsock.go#L152: 	return len(addr.IP) == IPv6len && addr.IP.To4() == nil

	net/http
		socks_bundle.go#L134: 		l += net.IPv6len
		socks_bundle.go#L135: 		a.IP = make(net.IP, net.IPv6len)

	crypto/x509
		parser.go#L418: 			case net.IPv4len, net.IPv6len:
		verify.go#L647: 				if l := len(ip); l != net.IPv4len && l != net.IPv6len {