- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for haveResponse (0.12 sec)
-
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
} /** * {@inheritDoc} * * @throws SMBProtocolDecodingException * * @see jcifs.internal.smb2.ServerMessageBlock2#haveResponse(byte[], int, int) */ @Override protected void haveResponse ( byte[] buffer, int start, int len ) throws SMBProtocolDecodingException { if ( isRetainPayload() ) { byte[] payload = new byte[len];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
// remaining in this receive. int rem = this.readSize - this.length; len += rem; } haveResponse(buffer, start, len); if ( this.nextCommand != 0 && this.next != null ) { if ( this.nextCommand % 8 != 0 ) { throw new SMBProtocolDecodingException("Chained command is not aligned");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0)