Files
2021-09-28 11:47: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
}