dns/_examples/s/s.go
2011-01-20 16:32:03 +01:00

23 lines
413 B
Go

// 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() {
}