- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getCompressionAlgorithms (0.78 sec)
-
src/test/java/jcifs/smb/compression/CompressionNegotiateContextTest.java
int decodedSize = decodedContext.decode(buffer, 0, encodedSize); assertEquals(encodedSize, decodedSize); assertArrayEquals(context.getCompressionAlgorithms(), decodedContext.getCompressionAlgorithms()); assertEquals(context.getFlags(), decodedContext.getFlags()); } @Test @DisplayName("Test invalid buffer size for decoding") public void testInvalidBufferSize() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
return NEGO_CTX_COMPRESSION_TYPE; } /** * Gets the supported compression algorithms. * * @return the supported compression algorithms */ public int[] getCompressionAlgorithms() { return this.compressionAlgorithms != null ? this.compressionAlgorithms.clone() : new int[0]; } /** * Gets the compression flags. * * @return the compression flags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 7.5K bytes - Viewed (0)