- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for setInputData (0.14 sec)
-
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
Smb2IoctlRequest req = 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); Smb2IoctlResponse resp = th.send(req, RequestParam.NO_RETRY); return resp.getOutputLength();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
this.maxOutputResponse = maxOutputResponse; } /** * @param inputData * the inputData to set */ public void setInputData ( Encodable inputData ) { this.inputData = inputData; } /** * @param outputData * the outputData to set */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:13:17 UTC 2018 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
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(),
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
dfd.getFileId()); copy.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); copy.setInputData(new SrvCopychunkCopy(resumeKey, chunkInfo)); try { SrvCopyChunkCopyResponse r = dh.send(copy, RequestParam.NO_RETRY).getOutputData(SrvCopyChunkCopyResponse.class);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 17.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
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 Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)