Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SMB_COM_NT_TRANSACT (0.09 sec)

  1. src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java

        }
    
        @Test
        void testWriteParameterWordsWireFormat_PrimaryTransaction() {
            // Test the writeParameterWordsWireFormat for a primary transaction.
            smbComNtTransaction.command = ServerMessageBlock.SMB_COM_NT_TRANSACT;
            smbComNtTransaction.function = SmbComNtTransaction.NT_TRANSACT_QUERY_SECURITY_DESC;
            smbComNtTransaction.maxSetupCount = 1;
            smbComNtTransaction.totalParameterCount = 10;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java

        int securityInformation;
    
        NtTransQuerySecurityDesc(final int fid, final int securityInformation) {
            this.fid = fid;
            this.securityInformation = securityInformation;
            command = SMB_COM_NT_TRANSACT;
            function = NT_TRANSACT_QUERY_SECURITY_DESC;
            setupCount = 0;
            totalDataCount = 0;
            maxParameterCount = 4;
            maxDataCount = 32768;
            maxSetupCount = (byte) 0x00;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

         *
         * @param config the configuration
         * @param function the NT transaction function code
         */
        protected SmbComNtTransaction(final Configuration config, final int function) {
            super(config, SMB_COM_NT_TRANSACT, (byte) 0);
            this.function = function;
            this.primarySetupOffset = NTT_PRIMARY_SETUP_OFFSET;
            this.secondaryParameterOffset = NTT_SECONDARY_PARAMETER_OFFSET;
        }
    
        /**
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java

        }
    
        @Test
        @DisplayName("Test NT transaction command handling")
        void testNtTransactionCommand() {
            transaction.command = ServerMessageBlock.SMB_COM_NT_TRANSACT;
    
            // First call
            transaction.nextElement();
    
            // Second call should change to NT_TRANSACT_SECONDARY
            transaction.nextElement();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top