Ejemplo n.º 1
0
func RD(d dns.DNS) {
	fmt.Printf("RD: ")
	if d.GetRD() {
		fmt.Println("Recursion Desired")
	} else {
		fmt.Println("Recursion not Desired")
	}
}