diggy - v1.1.1
    Preparing search index...

    Type Alias NaptrRecordData

    Represents the data for a DNS NAPTR (Naming Authority Pointer) record.

    type NaptrRecordData = {
        flags: string;
        order: number;
        preference: number;
        regexp: string;
        replacement: string;
        service: string;
    }
    Index

    Properties

    flags: string

    The flags for the NAPTR record, which can indicate various properties (e.g., "U" for URI, "S" for service).

    order: number

    The order of the NAPTR record, used to determine the sequence in which records should be processed.

    preference: number

    The preference of the NAPTR record, used to determine the order of preference among multiple records.

    regexp: string

    The regular expression for the NAPTR record, which can be used to transform the domain name.

    replacement: string

    The replacement string for the NAPTR record, which can be used to replace the domain name.

    service: string

    The service type for the NAPTR record, indicating the type of service provided (e.g., "SIP+D2U").