本文整理汇总了Golang中parser/dns.DNS.GetQTYPE方法的典型用法代码示例。如果您正苦于以下问题:Golang DNS.GetQTYPE方法的具体用法?Golang DNS.GetQTYPE怎么用?Golang DNS.GetQTYPE使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类parser/dns.DNS
的用法示例。
在下文中一共展示了DNS.GetQTYPE方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: QTYPE
func QTYPE(d dns.DNS, num int) {
field, err := d.GetQTYPE(num)
if err != nil {
fmt.Println(err.Error(), "\n")
return
}
fmt.Printf("QTYPE: ")
switch field {
case 1:
fmt.Println("A")
case 2:
fmt.Println("NS")
case 3:
fmt.Println("MD")
case 4:
fmt.Println("MF")
case 5:
fmt.Println("CNAME")
case 6:
fmt.Println("SOA")
case 7:
fmt.Println("MB")
case 8:
fmt.Println("MG")
case 9:
fmt.Println("MR")
case 10:
fmt.Println("NULL")
case 11:
fmt.Println("WKS")
case 12:
fmt.Println("PTR")
case 13:
fmt.Println("HINFO")
case 14:
fmt.Println("MINFO")
case 15:
fmt.Println("MX")
case 16:
fmt.Println("TXT")
case 28:
fmt.Println("AAAA")
case 252:
fmt.Println("AXFR")
case 253:
fmt.Println("MAILB")
case 254:
fmt.Println("MAILA")
case 255:
fmt.Println("*")
default:
fmt.Printf("NOT VALID %d \n", field)
}
}