-
Notifications
You must be signed in to change notification settings - Fork 0
/
ipv6.go
46 lines (36 loc) · 974 Bytes
/
ipv6.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
37
38
39
40
41
42
43
44
45
46
// Copyright (c) 2023-2024 Onur Cinar.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// https://github.com/cinar/checker
package checker
import (
"errors"
"net"
"reflect"
)
// tagIPV6 is the tag of the checker.
const tagIPV6 = "ipv6"
// ErrNotIPV6 indicates that the given value is not an IPv6 address.
var ErrNotIPV6 = errors.New("please enter a valid IPv6 address")
// IsIPV6 checks if the given value is an IPv6 address.
func IsIPV6(value string) error {
ip := net.ParseIP(value)
if ip == nil {
return ErrNotIPV6
}
if ip.To4() != nil {
return ErrNotIPV6
}
return nil
}
// makeIPV6 makes a checker function for the ipV6 checker.
func makeIPV6(_ string) CheckFunc {
return checkIPV6
}
// checkIPV6 checks if the given value is an IPv6 address.
func checkIPV6(value, _ reflect.Value) error {
if value.Kind() != reflect.String {
panic("string expected")
}
return IsIPV6(value.String())
}