Class SMB2PacketFactory
java.lang.Object
com.hierynomus.mssmb2.SMB2PacketFactory
- All Implemented Interfaces:
PacketFactory<SMB2PacketData>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanHandle(byte[] data) Checks whether this PacketFactory is able to handle the incoming raw byte data.read(byte[] data) Constructpacket dataout of the raw byte data.
-
Constructor Details
-
SMB2PacketFactory
public SMB2PacketFactory()
-
-
Method Details
-
read
Description copied from interface:PacketFactoryConstructpacket dataout of the raw byte data.- Specified by:
readin interfacePacketFactory<SMB2PacketData>- Parameters:
data- the byte array containing the full packet data- Returns:
- A newly constructed
PacketDataobject. - Throws:
Buffer.BufferException
-
canHandle
public boolean canHandle(byte[] data) Description copied from interface:PacketFactoryChecks whether this PacketFactory is able to handle the incoming raw byte data.- Specified by:
canHandlein interfacePacketFactory<SMB2PacketData>- Parameters:
data- the byte array containing the full packet data- Returns:
- true if the
PacketFactory.read(byte[])will result in a packet, false otherwise.
-