- Sort Score
- Result 10 results
- Languages All
Results 11 - 13 of 13 for parameterCount (0.06 sec)
-
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) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
// totalParameterCount (4 bytes) SMBUtil.writeInt4(1000, buffer, bufferIndex + 3); // totalDataCount (4 bytes) SMBUtil.writeInt4(2000, buffer, bufferIndex + 7); // parameterCount (4 bytes) SMBUtil.writeInt4(100, buffer, bufferIndex + 11); // parameterOffset (4 bytes) SMBUtil.writeInt4(64, buffer, bufferIndex + 15); // parameterDisplacement (4 bytes)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
this.maxDataCount = value; } public int getParameterCount() { return parameterCount; } public void setParameterCount(int value) { this.parameterCount = value; } public int getParameterOffset() { return parameterOffset; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)