Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setMaxInputResponse (0.1 sec)

  1. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java

            assertNotNull(request);
        }
    
        @Test
        @DisplayName("Test setMaxInputResponse method")
        void testSetMaxInputResponse() {
            setupMockConfig();
            Smb2IoctlRequest request = new Smb2IoctlRequest(mockConfig, TEST_CONTROL_CODE);
            int maxInput = 2048;
    
            request.setMaxInputResponse(maxInput);
    
            assertNotNull(request);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            this.flags = flags;
        }
    
        /**
         * Set the maximum input response size
         * @param maxInputResponse the maxInputResponse to set
         */
        public void setMaxInputResponse(final int maxInputResponse) {
            this.maxInputResponse = maxInputResponse;
        }
    
        /**
         * Set the maximum output response size
         * @param maxOutputResponse the maxOutputResponse to set
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top