Home
last modified time | relevance | path

Searched refs:RCODE_BITS (Results 1 – 4 of 4) sorted by relevance

/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnscore/src/
H A Dxfr_input_stream.c169 (((u64) ( RA_BITS | RCODE_BITS )) << 32 ) | \
177 (((u64) ( RCODE_BITS )) << 32 ))
185 (((u64) ( RCODE_BITS )) << 24 ) | \
193 (((u64) ( RCODE_BITS )) << 24 ))
209 (((u64) ( RA_BITS | RCODE_BITS )) << 32 ) | \
217 (((u64) ( RCODE_BITS )) << 32 ))
225 (((u64) ( RCODE_BITS )) << 24 ) | \
233 (((u64) ( RCODE_BITS )) << 24 ))
H A Dmessage.c646 ( ((u64) ( RA_BITS | RCODE_BITS )) << 32 ) | \
663 ( ((u64) ( RA_BITS | RCODE_BITS )) << 24 ) | \
862 …message_apply_mask(mesg, ~(QR_BITS|TC_BITS|AA_BITS), ~(Z_BITS|AD_BITS|CD_BITS|RA_BITS|RCODE_BITS)); in message_process_query()
990 …message_apply_mask(mesg, ~(QR_BITS|TC_BITS|AA_BITS), ~(Z_BITS|RA_BITS|AD_BITS|CD_BITS|RCODE_BITS)); in message_process()
1102 MESSAGE_LOFLAGS(buffer) &= ~(Z_BITS|AD_BITS|CD_BITS|RCODE_BITS); in message_process()
1206 message_apply_mask(mesg, ~(QR_BITS|TC_BITS|AA_BITS), ~(RA_BITS|RCODE_BITS)); in message_process()
1215 MESSAGE_LOFLAGS(buffer) &= ~(Z_BITS|AD_BITS|CD_BITS|RCODE_BITS); in message_process()
1321 message_apply_mask(mesg, ~(QR_BITS|TC_BITS|AA_BITS), ~(RA_BITS|RCODE_BITS)); in message_process()
1333 MESSAGE_LOFLAGS(buffer) &= ~(Z_BITS|AD_BITS|CD_BITS|RCODE_BITS); in message_process()
/dports/dns/yadifa/yadifa-2.5.3-10333/lib/dnscore/include/dnscore/
H A Drfc.h107 #define RCODE_BITS 0x0FU /* rfc 1035… macro
122 #define DNS_FLAGS_GET_RCODE(f_) (f_ & RCODE_BITS)
136 #define DNS_FLAGS_GET_RCODE(f_) ((f_ >> 8) & RCODE_BITS)
H A Dmessage.h152 #define MESSAGE_RCODE(buffer_) (MESSAGE_LOFLAGS(buffer_) & RCODE_BITS)
634 MESSAGE_LOFLAGS(mesg->_buffer) = (MESSAGE_LOFLAGS(mesg->_buffer) & ~RCODE_BITS) | rcode; in message_set_rcode()