Sha256: c57e7c366167f92a3d8999039b2b864edf69cd1689a15bf7b1f35af11a96e4a9
Contents?: true
Size: 742 Bytes
Versions: 54
Compression:
Stored size: 742 Bytes
Contents
module RubySMB module SMB1 module Packet module Trans # This class represents an SMB1 Trans PeekNamedPipe Request Packet as defined in # [2.2.5.5.1 Request](https://msdn.microsoft.com/en-us/library/ee442106.aspx) class PeekNmpipeRequest < RubySMB::SMB1::Packet::Trans::Request def fid=(file_id) parameter_block.setup = [RubySMB::SMB1::Packet::Trans::Subcommands::PEEK_NMPIPE, file_id] end def initialize_instance super data_block.name = "\\PIPE\\" parameter_block.setup << RubySMB::SMB1::Packet::Trans::Subcommands::PEEK_NMPIPE parameter_block.setup_count = 2 end end end end end end
Version data entries
54 entries across 54 versions & 1 rubygems