- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for inputOffset (0.05 seconds)
-
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) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.9K bytes - Click Count (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;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.9K bytes - Click Count (0)