- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for setInputData (0.06 sec)
-
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java
assertNotNull(request); } @Test @DisplayName("Test setInputData method") void testSetInputData() { setupMockConfig(); Smb2IoctlRequest request = new Smb2IoctlRequest(mockConfig, TEST_CONTROL_CODE); request.setInputData(mockInputData); 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) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
new Smb2IoctlRequest(th.getConfig(), Smb2IoctlRequest.FSCTL_PIPE_TRANSCEIVE, fh.getFileId(), inB); req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); req.setInputData(new ByteEncodable(buf, off, length)); req.setMaxOutputResponse(maxRecvSize); final Smb2IoctlResponse resp = th.send(req, RequestParam.NO_RETRY); return resp.getOutputLength();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
this.maxOutputResponse = maxOutputResponse; } /** * Set the input data for the IOCTL request * @param inputData the inputData to set */ public void setInputData(final Encodable inputData) { this.inputData = inputData; } /** * Set the output data for the IOCTL request * @param outputData the outputData 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) -
src/main/java/jcifs/smb/SmbCopyUtil.java
copy.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); copy.setInputData(new SrvCopychunkCopy(resumeKey, chunkInfo)); try { final SrvCopyChunkCopyResponse r =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
final Smb2IoctlRequest req = new Smb2IoctlRequest(sess.getConfig(), Smb2IoctlRequest.FSCTL_VALIDATE_NEGOTIATE_INFO); req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); req.setInputData(new ValidateNegotiateInfoRequest(negoReq.getCapabilities(), negoReq.getClientGuid(), (short) negoReq.getSecurityMode(), negoReq.getDialects())); Smb2IoctlResponse resp; try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
final Smb2IoctlRequest req = new Smb2IoctlRequest(ctx.getConfig(), Smb2IoctlRequest.FSCTL_DFS_GET_REFERRALS); req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); req.setInputData(dfsReq); dfsResp = ipc.send(req).getOutputData(DfsReferralResponseBuffer.class); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0)