Files
ArmedPolice/tools/ip/ip_range.go
2021-11-02 09:43:19 +08:00

18 lines
195 B
Go

package ip
import (
"errors"
)
const (
ipRangeFieldCount = 3
)
var ErrorIpRangeNotFound = errors.New("ip range not found")
type IpRange struct {
Begin uint32
End uint32
Data []byte
}