| 916 | |
| 917 | |
| 918 | class NRBFBinaryObjectString(NRBFRecord): |
| 919 | RecordTypeEnum = 6 |
| 920 | fields_desc = [ |
| 921 | NRBFRecord, |
| 922 | LEIntField("ObjectId", 0), |
| 923 | PacketField("Value", NRBFLengthPrefixedString(), NRBFLengthPrefixedString), |
| 924 | ] |
| 925 | |
| 926 | |
| 927 | # [MS-NRBF] sect 2.6.1 |
nothing calls this directly
no test coverage detected