Fix checksum bench

This commit is contained in:
世界 2025-03-12 16:24:42 +08:00
parent 7f3343169a
commit 57aba1a5c4
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 7 additions and 5 deletions

View file

@ -28,6 +28,6 @@ func BenchmarkGChecksum(b *testing.B) {
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
checksum.Checksum(packet[i%1000], 0)
checksum.ChecksumDefault(packet[i%1000], 0)
}
}