- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for inputOffset (0.11 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
this.outputData = this.outputBuffer == null ? createOutputDecodable() : null; if (this.inputData != null) { this.inputData.decode(buffer, inputOffset, inputCount); } bufferIndex = Math.max(inputOffset + inputCount, bufferIndex); if (this.outputBuffer != null) { if (outputCount > this.outputBuffer.length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java
// Calculate offsets relative to start of SMB2 header int inputOffsetField = inputCount > 0 ? payloadStart : 0; int outputOffsetField = outputCount > 0 ? payloadStart + inputCount : 0; // inputOffset (relative to header start) SMBUtil.writeInt4(inputOffsetField, buf, pos); pos += 4; // inputCount SMBUtil.writeInt4(inputCount, buf, pos); pos += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0)