Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SMB_COM_TRANSACTION_SECONDARY (0.08 sec)

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

            dstIndex += 2;
            if (command == SMB_COM_TRANSACTION_SECONDARY) {
                writeInt2(parameterDisplacement, dst, dstIndex);
                dstIndex += 2;
            }
            writeInt2(dataCount, dst, dstIndex);
            dstIndex += 2;
            writeInt2(dataCount == 0 ? 0 : dataOffset, dst, dstIndex);
            dstIndex += 2;
            if (command == SMB_COM_TRANSACTION_SECONDARY) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

                        ServerMessageBlock.SMB_COM_TRANSACTION, ServerMessageBlock.SMB_COM_TRANSACTION2,
                        ServerMessageBlock.SMB_COM_TRANSACTION_SECONDARY, ServerMessageBlock.SMB_COM_FIND_CLOSE2,
                        ServerMessageBlock.SMB_COM_TREE_DISCONNECT, ServerMessageBlock.SMB_COM_SESSION_SETUP_ANDX,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java

            // Second call - secondary
            transaction.nextElement();
    
            // Verify command changed to secondary
            assertEquals(ServerMessageBlock.SMB_COM_TRANSACTION_SECONDARY, transaction.command,
                    "Command should change to SMB_COM_TRANSACTION_SECONDARY");
        }
    
        @Test
        @DisplayName("Test NT transaction command handling")
        void testNtTransactionCommand() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                this.dataCount = Math.min(this.totalDataCount, available);
            } else {
                if (this.getCommand() != SMB_COM_NT_TRANSACT) {
                    this.setCommand(SMB_COM_TRANSACTION_SECONDARY);
                } else {
                    this.setCommand(SMB_COM_NT_TRANSACT_SECONDARY);
                }
                // totalParameterCount and totalDataCount are set ok from primary
    
    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/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

            case SMB_COM_CHECK_DIRECTORY -> "SMB_COM_CHECK_DIRECTORY";
            case SMB_COM_TRANSACTION -> "SMB_COM_TRANSACTION";
            case SMB_COM_TRANSACTION2 -> "SMB_COM_TRANSACTION2";
            case SMB_COM_TRANSACTION_SECONDARY -> "SMB_COM_TRANSACTION_SECONDARY";
            case SMB_COM_FIND_CLOSE2 -> "SMB_COM_FIND_CLOSE2";
            case SMB_COM_TREE_DISCONNECT -> "SMB_COM_TREE_DISCONNECT";
            case SMB_COM_LOGOFF_ANDX -> "SMB_COM_LOGOFF_ANDX";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java

            assertEquals((byte) 0x25, SmbComTransaction.SMB_COM_TRANSACTION);
            assertEquals((byte) 0xA0, SmbComTransaction.SMB_COM_NT_TRANSACT);
            assertEquals((byte) 0x26, SmbComTransaction.SMB_COM_TRANSACTION_SECONDARY);
            assertEquals((byte) 0xA1, SmbComTransaction.SMB_COM_NT_TRANSACT_SECONDARY);
        }
    
        @Test
        @DisplayName("Test sub-command constants")
        void testSubCommandConstants() {
    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/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            case SMB_COM_CHECK_DIRECTORY -> "SMB_COM_CHECK_DIRECTORY";
            case SMB_COM_TRANSACTION -> "SMB_COM_TRANSACTION";
            case SMB_COM_TRANSACTION2 -> "SMB_COM_TRANSACTION2";
            case SMB_COM_TRANSACTION_SECONDARY -> "SMB_COM_TRANSACTION_SECONDARY";
            case SMB_COM_FIND_CLOSE2 -> "SMB_COM_FIND_CLOSE2";
            case SMB_COM_TREE_DISCONNECT -> "SMB_COM_TREE_DISCONNECT";
            case SMB_COM_LOGOFF_ANDX -> "SMB_COM_LOGOFF_ANDX";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
Back to top