mirror of
https://github.com/miekg/dns.git
synced 2025-08-21 17:01:01 +02:00
23 lines
413 B
Go
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() {
|
|
}
|