Open maxpain opened 9 months ago
I've tested it and you just need to use bitwise operations to assign the flags according to the spec: https://www.rfc-editor.org/rfc/rfc1035.html#section-4.1.1
For example, setting flags: 1 << 12
changes the opcode to STATUS and flags: 3
changes the rcode to NXDOMAIN. You can combine multiple settings using bitwise or (|) e.g. flags: (1 << 12) | 3
.
I'm struggling with the same issue. Doesn't seem to be supported currently, even though it's present in the decoded packet object.