| 533 | |
| 534 | |
| 535 | class NRBFBinaryMethodCall(NRBFRecord): |
| 536 | RecordTypeEnum = 21 |
| 537 | fields_desc = [ |
| 538 | NRBFRecord, |
| 539 | FlagsField("MessageEnum", 0, -32, _NRBF_MessageFlags), |
| 540 | StringValueWithCode("MethodName"), |
| 541 | StringValueWithCode("TypeName"), |
| 542 | ConditionalField( |
| 543 | StringValueWithCode("CallContext"), |
| 544 | lambda pkt: pkt.MessageEnum.ContextInline, |
| 545 | ), |
| 546 | ConditionalField( |
| 547 | PacketField("Args", NRBFArrayOfValueWithCode(), NRBFArrayOfValueWithCode), |
| 548 | lambda pkt: pkt.MessageEnum.ArgsInline, |
| 549 | ), |
| 550 | ] |
| 551 | |
| 552 | |
| 553 | # [MS-NRBF] sect 2.2.3.3 |
nothing calls this directly
no test coverage detected
searching dependent graphs…