Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for totalDataCount (0.09 sec)

  1. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferral.java

            this.maxReferralLevel = maxReferralLevel;
            path = filename;
            command = SMB_COM_TRANSACTION2;
            subCommand = TRANS2_GET_DFS_REFERRAL;
            totalDataCount = 0;
            maxParameterCount = 0;
            maxDataCount = 4096;
            maxSetupCount = (byte) 0x00;
        }
    
        @Override
        int writeSetupWireFormat(final byte[] dst, int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java

            super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_PATH_INFORMATION);
            this.path = filename;
            this.informationLevel = informationLevel;
            this.totalDataCount = 0;
            this.maxParameterCount = 2;
            this.maxDataCount = 40;
            this.maxSetupCount = (byte) 0x00;
        }
    
        @Override
        protected int writeSetupWireFormat(final byte[] dst, int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java

            super(config, SMB_COM_TRANSACTION2, TRANS2_GET_DFS_REFERRAL);
            this.maxReferralLevel = maxReferralLevel;
            this.request = new DfsReferralRequestBuffer(filename, maxReferralLevel);
            this.totalDataCount = 0;
            this.maxParameterCount = 0;
            this.maxDataCount = 4096;
            this.maxSetupCount = (byte) 0x00;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

            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) {
                SMBUtil.writeInt4(this.maxParameterCount, dst, dstIndex);
                dstIndex += 4;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

            command = SMB_COM_TRANSACTION2;
            subCommand = TRANS2_FIND_FIRST2;
    
            flags = 0x00;
            informationLevel = SMB_FILE_BOTH_DIRECTORY_INFO;
    
            totalDataCount = 0;
            maxParameterCount = 10;
            maxDataCount = LIST_SIZE;
            maxSetupCount = 0;
        }
    
        @Override
        int writeSetupWireFormat(final byte[] dst, int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.5K 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