/* * Copyright (C) 2024 Jonni Liljamo * * This file is licensed under AGPL-3.0-or-later, see NOTICE and LICENSE for * more information. */ package util import ( "errors" "net" ) // CheckARecord verifies the validity of an A record. func CheckARecord(aRecord string) error { if net.ParseIP(aRecord).To4() == nil { return errors.New("Invalid A record") } return nil }