| 407 | |
| 408 | |
| 409 | class FileAccessInformation(Packet): |
| 410 | fields_desc = [ |
| 411 | FlagsField("AccessFlags", 0, -32, SMB2_ACCESS_FLAGS_FILE), |
| 412 | ] |
| 413 | |
| 414 | def default_payload_class(self, s): |
| 415 | return conf.padding_layer |
| 416 | |
| 417 | |
| 418 | # [MS-FSCC] 2.4.3 FileAlignmentInformation |
no test coverage detected