Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getOriginalMessageSize (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java

            }
        }
    
        /**
         * Gets the size of the original unencrypted message
         *
         * @return the original message size
         */
        public int getOriginalMessageSize() {
            return this.originalMessageSize;
        }
    
        /**
         * Sets the size of the original unencrypted message
         *
         * @param originalMessageSize
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java

            // Given
            int messageSize = 1024;
    
            // When
            transformHeader.setOriginalMessageSize(messageSize);
    
            // Then
            assertEquals(messageSize, transformHeader.getOriginalMessageSize());
        }
    
        @Test
        @DisplayName("Should set and get flags")
        void testFlags() {
            // Given
            int flags = 0x0001; // Encrypted flag
    
            // When
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12.7K bytes
    - Click Count (0)
Back to Top