/*
* Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
*
* This file is licensed under AGPL-3.0-or-later, see NOTICE and LICENSE for
* more information.
*/
package util
import (
"errors"
"net"
)
func CheckARecord(aRecord string) error {
if net.ParseIP(aRecord).To4() == nil {
return errors.New("Invalid A record")
}
return nil
}