bchelli/node-smb2

View on GitHub
lib/structures/close.js

Summary

Maintainability
A
0 mins
Test Coverage


module.exports = {

  request:[
    ['StructureSize', 2, 24]
  , ['Flags', 2, 0]
  , ['Reserved', 4, 0]
  , ['FileId', 16]
  ]

, response:[
    ['StructureSize', 2]
  , ['Flags', 2]
  , ['Reserved', 4]
  , ['CreationTime', 8]
  , ['LastAccessTime', 8]
  , ['LastWriteTime', 8]
  , ['ChangeTime', 8]
  , ['AllocationSize', 8]
  , ['EndofFile', 8]
  , ['FileAttributes', 4]
  ]

}