Sha256: 56522fb2103c2de47b832cc47cebd4b77905bc35d608ae24b91064635f04240b
Contents?: true
Size: 908 Bytes
Versions: 10
Compression:
Stored size: 908 Bytes
Contents
module RubySMB module SMB1 module Packet # This class represents an SMB1 LOGOFF Response Packet as defined in # [2.2.4.54.2 Response](https://msdn.microsoft.com/en-us/library/ee441488.aspx) class LogoffResponse < RubySMB::GenericPacket # The Parameter Block for this packet is empty save the Word Count and ANDX Block class ParameterBlock < RubySMB::SMB1::ParameterBlock and_x_block :andx_block 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_LOGOFF smb_header.flags.reply = 1 end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems