Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for compressionCount (1.98 sec)

  1. src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java

            int start = bufferIndex;
    
            // Read compression count
            int compressionCount = SMBUtil.readInt2(buffer, bufferIndex);
            bufferIndex += 2;
    
            // Validate compression count
            if (compressionCount < 0 || compressionCount > 16) {
                throw new SMBProtocolDecodingException("Invalid compression count: " + compressionCount);
            }
    
            // Skip padding
            bufferIndex += 2;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top