init
This commit is contained in:
17
tools/ip/ip_range.go
Normal file
17
tools/ip/ip_range.go
Normal file
@ -0,0 +1,17 @@
|
||||
package ip
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
const (
|
||||
ipRangeFieldCount = 3
|
||||
)
|
||||
|
||||
var ErrorIpRangeNotFound = errors.New("ip range not found")
|
||||
|
||||
type IpRange struct {
|
||||
Begin uint32
|
||||
End uint32
|
||||
Data []byte
|
||||
}
|
Reference in New Issue
Block a user