bchelli/node-smb2

View on GitHub
lib/structures/write.js

Summary

Maintainability
A
0 mins
Test Coverage


module.exports = {

  request:[
    ['StructureSize', 2, 49]
  , ['DataOffset', 2, 0x70]
  , ['Length', 4, 0]
  , ['Offset', 8]
  , ['FileId', 16]
  , ['Channel', 4, 0]
  , ['RemainingBytes', 4, 0]
  , ['WriteChannelInfoOffset', 2, 0]
  , ['WriteChannelInfoLength', 2, 0]
  , ['Flags', 4, 0]
  , ['Buffer', 'Length']
  ]

, response:[
    ['StructureSize', 2]
  , ['Reserved', 2]
  , ['Count', 4]
  , ['Remaining', 4]
  , ['WriteChannelInfoOffset', 2]
  , ['WriteChannelInfoLength', 2]
  ]

}