edgeport - v1.0.6
    Preparing search index...

    Interface DnsFlags

    The decoded DNS flags word (the 16 bits after the id in the header).

    1.0.4

    interface DnsFlags {
        aa: boolean;
        ad: boolean;
        cd: boolean;
        opcode: number;
        qr: boolean;
        ra: boolean;
        rcode: number;
        rd: boolean;
        tc: boolean;
        z: boolean;
    }
    Index
    aa: boolean

    Authoritative answer (set by the authoritative server).

    ad: boolean

    Authentic data (DNSSEC: the resolver vouches the data is validated).

    cd: boolean

    Checking disabled (DNSSEC: the client accepts unvalidated data).

    opcode: number

    The operation code.

    qr: boolean

    Query (false) or response (true).

    ra: boolean

    Recursion available (set by the server if it offers recursion).

    rcode: number

    The response code.

    rd: boolean

    Recursion desired (set by the client to ask the resolver to recurse).

    tc: boolean

    Truncated (the message was cut short; over TCP this should be clear per RFC 7766).

    z: boolean

    The reserved Z bit (must be zero).