2018-12-28 07:17:51 -07:00
|
|
|
package dhcpd
|
|
|
|
|
|
|
|
import (
|
2019-07-17 01:55:21 -07:00
|
|
|
"encoding/binary"
|
2018-12-28 07:17:51 -07:00
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
func isTimeout(err error) bool {
|
|
|
|
operr, ok := err.(*net.OpError)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return operr.Timeout()
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseIPv4(text string) (net.IP, error) {
|
|
|
|
result := net.ParseIP(text)
|
|
|
|
if result == nil {
|
|
|
|
return nil, fmt.Errorf("%s is not an IP address", text)
|
|
|
|
}
|
|
|
|
if result.To4() == nil {
|
|
|
|
return nil, fmt.Errorf("%s is not an IPv4 address", text)
|
|
|
|
}
|
|
|
|
return result.To4(), nil
|
|
|
|
}
|
2019-07-17 01:55:21 -07:00
|
|
|
|
|
|
|
// Return TRUE if subnet mask is correct (e.g. 255.255.255.0)
|
|
|
|
func isValidSubnetMask(mask net.IP) bool {
|
|
|
|
var n uint32
|
|
|
|
n = binary.BigEndian.Uint32(mask)
|
|
|
|
for i := 0; i != 32; i++ {
|
|
|
|
if n == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if (n & 0x80000000) == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
n <<= 1
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|