- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setReadSize (0.57 sec)
-
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
*/ public final int getNextCommandOffset () { return this.nextCommand; } /** * @param readSize * the readSize to set */ public void setReadSize ( int readSize ) { this.readSize = readSize; } /** * @return the async */ public boolean isAsync () { return this.async; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
System.arraycopy(this.sbuf, 4, buffer, 0, Smb2Constants.SMB2_HEADER_LENGTH); readn(this.in, buffer, Smb2Constants.SMB2_HEADER_LENGTH, rl - Smb2Constants.SMB2_HEADER_LENGTH); cur.setReadSize(rl); int len = cur.decode(buffer, 0); if ( len > rl ) { throw new IOException(String.format("WHAT? ( read %d decoded %d ): %s", rl, len, cur)); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)