| 3311 | |
| 3312 | |
| 3313 | class SMB2_Close_Response(_SMB2_Payload): |
| 3314 | name = "SMB2 CLOSE Response" |
| 3315 | Command = 0x0006 |
| 3316 | FileAttributes = 0 |
| 3317 | CreationTime = 0 |
| 3318 | LastAccessTime = 0 |
| 3319 | LastWriteTime = 0 |
| 3320 | ChangeTime = 0 |
| 3321 | fields_desc = [ |
| 3322 | XLEShortField("StructureSize", 0x3C), |
| 3323 | FlagsField("Flags", 0, -16, ["SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB"]), |
| 3324 | LEIntField("Reserved", 0), |
| 3325 | ] + FileNetworkOpenInformation.fields_desc[:7] |
| 3326 | |
| 3327 | |
| 3328 | bind_top_down( |
no test coverage detected
searching dependent graphs…