mirror of
https://github.com/miekg/dns.git
synced 2025-10-14 11:21:01 +02:00
14 lines
220 B
Go
14 lines
220 B
Go
package dns
|
|
|
|
// Unknown Resource Records
|
|
|
|
import "strconv"
|
|
|
|
func unknownClass(class int) string {
|
|
return "CLASS" + strconv.Itoa(class)
|
|
}
|
|
|
|
func unknownType(t int) string {
|
|
return "TYPE" + strconv.Itoa(t)
|
|
}
|