We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6bb315d + ce8edd6 commit 05586b1Copy full SHA for 05586b1
1 file changed
lmap.go
@@ -57,7 +57,7 @@ func CheckIP(subnet string, isVerbose bool) {
57
}
58
usedIP[old] = data
59
if isVerbose {
60
- fmt.Println("已使用IP:", usedIP[:usedIndex])
+ fmt.Println("已使用IP:", data)
61
62
} else {
63
old := atomic.LoadInt64(&unusedIndex)
@@ -66,7 +66,7 @@ func CheckIP(subnet string, isVerbose bool) {
66
67
unusedIP[old] = data
68
69
- fmt.Println("未使用IP:", unusedIP[:unusedIndex])
+ fmt.Println("未使用IP:", data)
70
71
72
}(ip)
0 commit comments