Uses of Interface
com.hierynomus.smbj.connection.packet.IncomingPacketHandler
-
Packages that use IncomingPacketHandler Package Description com.hierynomus.smbj.connection com.hierynomus.smbj.connection.packet -
-
Uses of IncomingPacketHandler in com.hierynomus.smbj.connection
Fields in com.hierynomus.smbj.connection declared as IncomingPacketHandler Modifier and Type Field Description private IncomingPacketHandler
Connection. packetHandlerChain
-
Uses of IncomingPacketHandler in com.hierynomus.smbj.connection.packet
Classes in com.hierynomus.smbj.connection.packet that implement IncomingPacketHandler Modifier and Type Class Description class
AbstractIncomingPacketHandler
class
DeadLetterPacketHandler
class
SMB1PacketHandler
class
SMB2AsyncResponsePacketHandler
3.2.5.1.5 Handling Asynchronous Responses If SMB2_FLAGS_ASYNC_COMMAND is set in the Flags field of the SMB2 header of the response and the Status field in the SMB2 header is STATUS_PENDING, the client MUST mark the request in Connection.OutstandingRequests as being handled asynchronously by storing the AsyncId of the response in Request.AsyncId.class
SMB2CompoundedPacketHandler
[MS-SMB2] 3.2.5.1.9 Handling Compounded Responsesclass
SMB2CreditGrantingPacketHandler
[MS-SMB2] 3.2.5.1.4 Granting Message Credits If CreditResponse is greater than 0, the client MUST insert the newly granted credits into the Connection.SequenceWindow.class
SMB2IsOutstandingPacketHandler
[MS-SMB2] 3.2.5.1.2 Finding the Application Request for This Responseclass
SMB2PacketHandler
class
SMB2ProcessResponsePacketHandler
[MS-SMB2] 3.2.5.1.7 Handling Incorrectly Formatted Responses AND 3.2.5.1.8 Processing the Responseclass
SMB2SignatureVerificationPacketHandler
3.2.5.1.3 Verifying the Signature If the client implements the SMB 3.x dialect family and if the decryption in section 3.2.5.1.1 succeeds, the client MUST skip the processing in this section.class
SMB3DecryptingPacketHandler
3.2.5.1.1 Decrypting the MessageFields in com.hierynomus.smbj.connection.packet declared as IncomingPacketHandler Modifier and Type Field Description protected IncomingPacketHandler
AbstractIncomingPacketHandler. next
Methods in com.hierynomus.smbj.connection.packet that return IncomingPacketHandler Modifier and Type Method Description IncomingPacketHandler
AbstractIncomingPacketHandler. setNext(IncomingPacketHandler handler)
IncomingPacketHandler
IncomingPacketHandler. setNext(IncomingPacketHandler handler)
Adds the given IncomingPacketHandler to the handling chain, and returns it, so that this call can be chained.Methods in com.hierynomus.smbj.connection.packet with parameters of type IncomingPacketHandler Modifier and Type Method Description IncomingPacketHandler
AbstractIncomingPacketHandler. setNext(IncomingPacketHandler handler)
IncomingPacketHandler
IncomingPacketHandler. setNext(IncomingPacketHandler handler)
Adds the given IncomingPacketHandler to the handling chain, and returns it, so that this call can be chained.
-