Skip to content

Commit 88a8496

Browse files
committed
Don't use To16() != nil to detect IPv6 addresses
The ip.To16() function returns non-nil if `ip` is any kind of IP address, including IPv4. To look for IPv6 specifically, use ip.To4() == nil. Signed-off-by: Sam Edwards <[email protected]>
1 parent 210db9b commit 88a8496

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cri/sbserver/sandbox_run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ func selectPodIPs(ctx context.Context, configs []*cni.IPConfig, preference strin
612612
}
613613
case "ipv6":
614614
for i, ip := range configs {
615-
if ip.IP.To16() != nil {
615+
if ip.IP.To4() == nil {
616616
return ipString(ip), append(extra, toStrings(configs[i+1:])...)
617617
}
618618
extra = append(extra, ipString(ip))

pkg/cri/server/sandbox_run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ func selectPodIPs(ctx context.Context, configs []*cni.IPConfig, preference strin
692692
}
693693
case "ipv6":
694694
for i, ip := range configs {
695-
if ip.IP.To16() != nil {
695+
if ip.IP.To4() == nil {
696696
return ipString(ip), append(extra, toStrings(configs[i+1:])...)
697697
}
698698
extra = append(extra, ipString(ip))

0 commit comments

Comments
 (0)