edgeport - v1.0.6
    Preparing search index...

    Interface DnsMessage

    A complete DNS message: the header id/flags, the question section, and the three RR sections.

    The section counts are derived from the array lengths on encode, so they are not stored here.

    1.0.4

    interface DnsMessage {
        additional: ResourceRecord[];
        answer: ResourceRecord[];
        authority: ResourceRecord[];
        flags: DnsFlags;
        id: number;
        question: Question[];
    }
    Index
    additional: ResourceRecord[]

    The additional section (where an OPT record rides).

    answer: ResourceRecord[]

    The answer section.

    authority: ResourceRecord[]

    The authority section.

    flags: DnsFlags

    The flags word.

    id: number

    The 16-bit id.

    question: Question[]

    The question section.