dns.idl: fix DNS_RCODE from 0xF to 0x1F
authorStefan Metzmacher <metze@samba.org>
Wed, 23 Jan 2019 08:32:08 +0000 (09:32 +0100)
committerAndreas Schneider <asn@cryptomilk.org>
Tue, 29 Jan 2019 21:09:07 +0000 (22:09 +0100)
commit 74206984daa9c707a38675df88d6bbe660d876bc introduced
TSIG related error codes up to DNS_RCODE_BADALG   = 0x15

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
librpc/idl/dns.idl

index 8e8eed5ab23716d26e9e22f5df7b9428f2f119b8..c47a40344f252f59dd0b3e349592d1711f975c9e 100644 (file)
@@ -23,8 +23,7 @@ interface dns
        const int DNS_MAX_LABEL_LENGTH   = 63;
 
        typedef [public,bitmap16bit] bitmap {
-               DNS_RCODE                   = 0x000F,
-               DNS_FLAG_BROADCAST          = 0x0010,
+               DNS_RCODE                   = 0x001F,
                DNS_FLAG_RECURSION_AVAIL    = 0x0080,
                DNS_FLAG_RECURSION_DESIRED  = 0x0100,
                DNS_FLAG_TRUNCATION         = 0x0200,