- Sort Score
- Num 10 results
- Language All
Results 11 - 19 of 19 for totalParameterCount (0.38 seconds)
-
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
// the fields are set in the constructor – check that the counts match assertEquals(2, cmd.totalParameterCount, "totalParameterCount should be 2"); assertEquals(0, cmd.totalDataCount, "totalDataCount should be 0"); assertEquals(0, cmd.maxParameterCount, "maxParameterCount should be 0");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java
dst[dstIndex++] = (byte) 0x00; // Reserved } dst[dstIndex] = (byte) 0x00; // Reserved dstIndex++; dst[dstIndex++] = (byte) 0x00; // Reserved writeInt4(totalParameterCount, dst, dstIndex); dstIndex += 4; writeInt4(totalDataCount, dst, dstIndex); dstIndex += 4; if (command != SMB_COM_NT_TRANSACT_SECONDARY) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertTrue(result.contains("SMB_COM_TRANSACTION")); // Also verify it contains transaction-specific details assertTrue(result.contains("totalParameterCount")); assertTrue(result.contains("totalDataCount")); assertTrue(result.contains("maxParameterCount")); assertTrue(result.contains("maxDataCount")); } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
void testToString() { String result = response.toString(); assertNotNull(result); // The toString method includes various parameter information assertTrue(result.contains("totalParameterCount")); assertTrue(result.contains("totalDataCount")); assertTrue(result.contains("dataCount")); } @Test @DisplayName("Test configuration usage")
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
this.maxSetupCount = value; } public int getTotalParameterCount() { return totalParameterCount; } public void setTotalParameterCount(int value) { this.totalParameterCount = value; } public int getTotalDataCount() { return totalDataCount; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.SMB_INFO_ALLOCATION); // Verify the object is created with expected configuration // totalParameterCount should be 2 // totalDataCount should be 0 // maxParameterCount should be 0 // maxDataCount should be 800 // maxSetupCount should be 0 assertNotNull(trans2QueryFSInfo);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java
bufferIndex++; buffer[bufferIndex++] = (byte) 0x00; // Reserved buffer[bufferIndex++] = (byte) 0x00; // Reserved this.totalParameterCount = SMBUtil.readInt4(buffer, bufferIndex); if (this.bufDataStart == 0) { this.bufDataStart = this.totalParameterCount; } bufferIndex += 4; this.totalDataCount = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformation.java
super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_FS_INFORMATION); this.informationLevel = informationLevel; this.totalParameterCount = 2; this.totalDataCount = 0; this.maxParameterCount = 0; this.maxDataCount = 800; this.maxSetupCount = 0; } @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
dst[dstIndex++] = (byte) 0x00; // Reserved } dst[dstIndex] = (byte) 0x00; // Reserved dstIndex++; dst[dstIndex++] = (byte) 0x00; // Reserved SMBUtil.writeInt4(this.totalParameterCount, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4(this.totalDataCount, dst, dstIndex); dstIndex += 4; if (this.getCommand() != SMB_COM_NT_TRANSACT_SECONDARY) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0)