Sha256: d7a2b07a53794a2faf3d4dde3a65a851751cd0d21110c4bbde32e010cf751144
Contents?: true
Size: 885 Bytes
Versions: 10
Compression:
Stored size: 885 Bytes
Contents
module RubySMB module SMB1 module Packet # This class represents an SMB1 TreeDisonnect Response Packet as defined in # [2.2.4.51.2 Response](https://msdn.microsoft.com/en-us/library/ee441823.aspx) class TreeDisconnectResponse < RubySMB::GenericPacket # The Parameter Block for this packet is empty save the Word Count class ParameterBlock < RubySMB::SMB1::ParameterBlock end # The Data Block for this packet is empty save the Byte Count class DataBlock < RubySMB::SMB1::DataBlock end smb_header :smb_header parameter_block :parameter_block data_block :data_block def initialize_instance super smb_header.command = RubySMB::SMB1::Commands::SMB_COM_TREE_DISCONNECT smb_header.flags.reply = 1 end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems