| 1614 | |
| 1615 | |
| 1616 | class FileAllInformation(Packet): |
| 1617 | fields_desc = [ |
| 1618 | PacketField("BasicInformation", FileBasicInformation(), FileBasicInformation), |
| 1619 | PacketField( |
| 1620 | "StandardInformation", FileStandardInformation(), FileStandardInformation |
| 1621 | ), |
| 1622 | PacketField( |
| 1623 | "InternalInformation", FileInternalInformation(), FileInternalInformation |
| 1624 | ), |
| 1625 | PacketField("EaInformation", FileEaInformation(), FileEaInformation), |
| 1626 | PacketField( |
| 1627 | "AccessInformation", FileAccessInformation(), FileAccessInformation |
| 1628 | ), |
| 1629 | PacketField( |
| 1630 | "PositionInformation", FilePositionInformation(), FilePositionInformation |
| 1631 | ), |
| 1632 | PacketField("ModeInformation", FileModeInformation(), FileModeInformation), |
| 1633 | PacketField( |
| 1634 | "AlignmentInformation", FileAlignmentInformation(), FileAlignmentInformation |
| 1635 | ), |
| 1636 | PacketField("NameInformation", FILE_NAME_INFORMATION(), FILE_NAME_INFORMATION), |
| 1637 | ] |
| 1638 | |
| 1639 | |
| 1640 | # [MS-FSCC] 2.5.1 FileFsAttributeInformation |
no test coverage detected