Sha256: 958ea5d88646339d932b5a6ab1048e2360521d5e12a228a815a309bcef5250a2
Contents?: true
Size: 847 Bytes
Versions: 53
Compression:
Stored size: 847 Bytes
Contents
module RubySMB module SMB1 module Packet # This class represents an SMB1 TreeDisonnect Request Packet as defined in # [2.2.4.51.1 Request](https://msdn.microsoft.com/en-us/library/ee441622.aspx) class TreeDisconnectRequest < RubySMB::GenericPacket COMMAND = RubySMB::SMB1::Commands::SMB_COM_TREE_DISCONNECT # The Parameter Block for this packet is empty save the Word Count # The {RubySMB::SMB1::ParameterBlock} specific to this packet type. 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 end end end end
Version data entries
53 entries across 53 versions & 1 rubygems