- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for parameterCount (0.79 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java
assertEquals(smbComNtTransaction.maxDataCount, SmbComTransaction.readInt4(dst, 15), "maxDataCount should be written correctly"); assertEquals(smbComNtTransaction.parameterCount, SmbComTransaction.readInt4(dst, 19), "parameterCount should be written correctly"); assertEquals(smbComNtTransaction.parameterOffset, SmbComTransaction.readInt4(dst, 23), "parameterOffset should be written correctly");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionResponseTest.java
// totalParameterCount = 10 writeInt4(10, buffer, bufferIndex); bufferIndex += 4; // totalDataCount = 20 writeInt4(20, buffer, bufferIndex); bufferIndex += 4; // parameterCount = 5 writeInt4(5, buffer, bufferIndex); bufferIndex += 4; // parameterOffset = 30 writeInt4(30, buffer, bufferIndex); bufferIndex += 4; // parameterDisplacement = 0
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java
dstIndex += 4; writeInt4(maxDataCount, dst, dstIndex); dstIndex += 4; } writeInt4(parameterCount, dst, dstIndex); dstIndex += 4; writeInt4(parameterCount == 0 ? 0 : parameterOffset, dst, dstIndex); dstIndex += 4; if (command == SMB_COM_NT_TRANSACT_SECONDARY) { writeInt4(parameterDisplacement, dst, dstIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java
this.bufDataStart = this.totalParameterCount; } bufferIndex += 4; this.totalDataCount = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.parameterCount = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.parameterOffset = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java
if (bufDataStart == 0) { bufDataStart = totalParameterCount; } bufferIndex += 4; totalDataCount = readInt4(buffer, bufferIndex); bufferIndex += 4; parameterCount = readInt4(buffer, bufferIndex); bufferIndex += 4; parameterOffset = readInt4(buffer, bufferIndex); bufferIndex += 4; parameterDisplacement = readInt4(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
dstIndex += 4; SMBUtil.writeInt4(this.maxDataCount, dst, dstIndex); dstIndex += 4; } SMBUtil.writeInt4(this.parameterCount, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4(this.parameterCount == 0 ? 0 : this.parameterOffset, dst, dstIndex); dstIndex += 4; if (this.getCommand() == SMB_COM_NT_TRANSACT_SECONDARY) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0)