| 446 | |
| 447 | |
| 448 | class FileAlternateNameInformation(Packet): |
| 449 | fields_desc = [ |
| 450 | FieldLenField("FileNameLength", None, length_of="FileName", fmt="<I"), |
| 451 | StrLenFieldUtf16("FileName", b"", length_from=lambda pkt: pkt.FileNameLength), |
| 452 | ] |
| 453 | |
| 454 | |
| 455 | # [MS-FSCC] 2.4.7 FileBasicInformation |
no test coverage detected