Sha256: e60c9f7f75d6cfb04eab1eb04eaf5271807e655b6844ab6949cd1cb81955077f
Contents?: true
Size: 870 Bytes
Versions: 8
Compression:
Stored size: 870 Bytes
Contents
module RubySMB module SMB1 module Packet # This class represents an SMB1 LOGOFF Request Packet as defined in # [2.2.4.54.1 Request](https://msdn.microsoft.com/en-us/library/ee442167.aspx) class LogoffRequest < 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 end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems