Refactor to use consistent numeric type in dce_rpc. Add missing DNS query type codes

This commit is contained in:
Dale Lakes 2018-10-15 19:17:53 -04:00
parent c8637b7430
commit 3c765731b3
3 changed files with 298 additions and 248 deletions

View file

@ -38,12 +38,12 @@ export {
[0x1e] = "ABORT_FILE",
[0x1f] = "ACTIVATE_CONFIG",
[0x20] = "AUTHENTICATE_REQ",
[0x21] = "AUTHENTICATE_ERR",
[0x21] = "AUTHENTICATE_REQ_NR",
# Responses.
[0x81] = "RESPONSE",
[0x82] = "UNSOLICITED_RESPONSE",
[0x83] = "AUTHENTICATE_RESP",
[0x83] = "AUTHENTICATE_RESPONSE",
} &default=function(i: count):string { return fmt("unknown-%d", i); } &redef;
}