Package com.hierynomus.mssmb
Class SMB1PacketFactory
java.lang.Object
com.hierynomus.mssmb.SMB1PacketFactory
- All Implemented Interfaces:
PacketFactory<SMB1PacketData>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
canHandle
(byte[] data) Checks whether this PacketFactory is able to handle the incoming raw byte data.read
(byte[] data) Constructpacket data
out of the raw byte data.
-
Constructor Details
-
SMB1PacketFactory
public SMB1PacketFactory()
-
-
Method Details
-
read
Description copied from interface:PacketFactory
Constructpacket data
out of the raw byte data.- Specified by:
read
in interfacePacketFactory<SMB1PacketData>
- Parameters:
data
- the byte array containing the full packet data- Returns:
- A newly constructed
PacketData
object. - Throws:
Buffer.BufferException
IOException
-
canHandle
public boolean canHandle(byte[] data) Description copied from interface:PacketFactory
Checks whether this PacketFactory is able to handle the incoming raw byte data.- Specified by:
canHandle
in interfacePacketFactory<SMB1PacketData>
- Parameters:
data
- the byte array containing the full packet data- Returns:
- true if the
PacketFactory.read(byte[])
will result in a packet, false otherwise.
-