Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for setSubCommand (0.06 sec)

  1. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            // Verify that the command is not set in constructor (defaults to 0)
            assertEquals(0, response.getCommand());
    
            // Verify we can change the subcommand
            response.setSubCommand((byte) 0xFF);
            assertEquals((byte) 0xFF, response.getSubCommand());
    
            // But creating a new instance should have the correct subcommand
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

            return this.subCommand;
        }
    
        /**
         * Sets the transaction subcommand
         * @param subCommand
         *            the subCommand to set
         */
        public final void setSubCommand(final byte subCommand) {
            this.subCommand = subCommand;
        }
    
        @Override
        public void reset() {
            super.reset();
            this.isPrimary = this.hasMore = true;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.3K bytes
    - Viewed (0)
Back to top