func parsePTRType(rr dns.RR) string {
    var value string
    if t, ok := rr.(*dns.PTR); ok {
        name := RemoveLastDot(t.Ptr)