Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for totalDataCount (0.23 sec)

  1. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

            if (!this.dataDone && this.dataDisplacement + this.dataCount == this.totalDataCount) {
                this.dataDone = true;
            }
    
            if (this.parametersDone && this.dataDone) {
                readParametersWireFormat(this.txn_buf, this.bufParameterStart, this.totalParameterCount);
                readDataWireFormat(this.txn_buf, this.bufDataStart, this.totalDataCount);
                this.hasMore = false;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            // Write values little-endian
            buf[idx++] = 5; // totalParameterCount low byte
            buf[idx++] = 0; // totalParameterCount high byte -> value 5
            buf[idx++] = 3; // totalDataCount low
            buf[idx++] = 0; // totalDataCount high
            idx += 2; // 2-byte reserved field (not 4 as the code shows)
            buf[6] = 2; // parameterCount low
            buf[7] = 0; // high
            buf[8] = 4; // parameterOffset low
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

                pad1 = dataOffset % PADDING_SIZE;
                pad1 = pad1 == 0 ? 0 : PADDING_SIZE - pad1;
                dataOffset += pad1;
    
                totalDataCount = writeDataWireFormat(txn_buf, bufDataOffset);
    
                dataCount = Math.min(totalDataCount, available);
            } else {
                if (command != SMB_COM_NT_TRANSACT) {
                    command = SMB_COM_TRANSACTION_SECONDARY;
                } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                this.pad2 = this.pad(this.dataOffset);
                this.dataOffset += this.pad2;
    
                this.totalDataCount = writeDataWireFormat(this.txn_buf, this.bufDataOffset);
    
                this.dataCount = Math.min(this.totalDataCount, available);
            } else {
                if (this.getCommand() != SMB_COM_NT_TRANSACT) {
                    this.setCommand(SMB_COM_TRANSACTION_SECONDARY);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

            buffer[bufferIndex + 1] = 0x00;
            buffer[bufferIndex + 2] = 0x00;
    
            // 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)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  6. 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
        @DisplayName("Test transaction command constants")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

                this.totalParameterCount = value;
            }
    
            public int getTotalDataCount() {
                return totalDataCount;
            }
    
            public void setTotalDataCount(int value) {
                this.totalDataCount = value;
            }
    
            public int getMaxParameterCount() {
                return maxParameterCount;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java

            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")
        void testConfigurationUsage() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java

            // 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);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top