| 942 | |
| 943 | |
| 944 | class NRBFBinaryLibrary(NRBFRecord): |
| 945 | RecordTypeEnum = 12 |
| 946 | fields_desc = [ |
| 947 | NRBFRecord, |
| 948 | LESignedIntField("LibraryId", 0), |
| 949 | PacketField( |
| 950 | "LibraryName", NRBFLengthPrefixedString(), NRBFLengthPrefixedString |
| 951 | ), |
| 952 | ] |
| 953 | |
| 954 | |
| 955 | # [MS-NRBF] sect 2.6.3 |
nothing calls this directly
no test coverage detected