mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
15 lines
352 B
Go
15 lines
352 B
Go
// This file contains IP checksum algorithms that are not specific to any
|
|
// architecture and don't use hardware acceleration.
|
|
|
|
//go:build !amd64
|
|
|
|
package tschecksum
|
|
|
|
import "strconv"
|
|
|
|
func Checksum(data []byte, initial uint16) uint16 {
|
|
if strconv.IntSize < 64 {
|
|
return checksumGeneric32(data, initial)
|
|
}
|
|
return checksumGeneric64(data, initial)
|
|
}
|