Skip to content

Commit

Permalink
Use correct maxPayloadSize for encrypted packets (Fixes #668)
Browse files Browse the repository at this point in the history
  • Loading branch information
hierynomus committed Dec 15, 2021
1 parent 5c42b8f commit ba0e8cc
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,10 @@ public SMB2PacketHeader getHeader() {
return packet.getHeader();
}

@Override
public int getMaxPayloadSize() {
return packet.getMaxPayloadSize();
}

@Override
public long getSequenceNumber() {
Expand Down

0 comments on commit ba0e8cc

Please sign in to comment.