Skip to content

Commit

Permalink
fix RA_MASK
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed Jun 27, 2022
1 parent f54b97f commit 51d3f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static const uint32_t OPCODE_MASK = 0x7800;
static const uint32_t AA_MASK = 0x0400;
static const uint32_t TC_MASK = 0x0200;
static const uint32_t RD_MASK = 0x0100;
static const uint32_t RA_MASK = 0x8000;
static const uint32_t RA_MASK = 0x0080;
static const uint32_t RCODE_MASK = 0x000F;

/* Response Type */
Expand Down

0 comments on commit 51d3f8a

Please sign in to comment.