edgeport - v1.0.6
    Preparing search index...

    Enumeration ResponseCode

    DNS RCODE values (the response status, low 4 bits of the flags word).

    NOERROR is success. The session layer maps SERVFAIL / REFUSED / FORMERR / NOTIMP to a ProtocolError on the typed paths, while NXDOMAIN (the name simply has no records) does not throw for resolve. The raw DnsSession.query exposes the rcode unchanged.

    1.0.4

    Index
    FORMERR: 1

    Format error: the server could not interpret the query.

    NOERROR: 0

    No error.

    NOTAUTH: 9

    The server is not authoritative for the zone.

    NOTIMP: 4

    Not implemented: the server does not support the requested query.

    NOTZONE: 10

    A name is not within the zone.

    NXDOMAIN: 3

    Non-existent domain: the queried name does not exist.

    NXRRSET: 8

    An RR set that should exist does not.

    REFUSED: 5

    Query refused (policy).

    SERVFAIL: 2

    Server failure.

    YXDOMAIN: 6

    A name that should not exist does (dynamic update).

    YXRRSET: 7

    An RR set that should not exist does.