- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setMaxInputResponse (0.31 seconds)
-
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); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.3K bytes - Click Count (0) -
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 setCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 9.4K bytes - Click Count (0)