// A nameserver in Go // Zones must be defined by hand currently (this is a work-in-progress in the // Go DNS library) // It tries to do the correct things, formerr, nxdomain and answers // it does ONLINE signing, with a predefined key, there is no ZSK/KSK destinction // It DOES NOT DO NSEC/NSEC3 yet package main import ( /* "net" "dns" "dns/responder" "os" "flag" "fmt" "strings" */ ) func main() { }