-
Notifications
You must be signed in to change notification settings - Fork 0
/
cidr.go
36 lines (28 loc) · 810 Bytes
/
cidr.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package checker
import (
"net"
"reflect"
)
// CheckerCidr is the name of the checker.
const CheckerCidr = "cidr"
// ResultNotCidr indicates that the given value is not a valid CIDR.
const ResultNotCidr = "NOT_CIDR"
// IsCidr checker checks if the value is a valid CIDR notation IP address and prefix length.
func IsCidr(value string) Result {
_, _, err := net.ParseCIDR(value)
if err != nil {
return ResultNotCidr
}
return ResultValid
}
// makeCidr makes a checker function for the ip checker.
func makeCidr(_ string) CheckFunc {
return checkCidr
}
// checkCidr checker checks if the value is a valid CIDR notation IP address and prefix length.
func checkCidr(value, _ reflect.Value) Result {
if value.Kind() != reflect.String {
panic("string expected")
}
return IsCidr(value.String())
}