- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for SrvCopyChunkCopyResponse (0.19 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponse.java
* of a server-side copy operation. * * @author mbechler * */ public class SrvCopyChunkCopyResponse implements Decodable { /** * Constructs a new SrvCopyChunkCopyResponse. * This response contains the results of a server-side copy operation. */ public SrvCopyChunkCopyResponse() { } private int chunksWritten; private int chunkBytesWritten;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
@DisplayName("Should create multiple independent instances") void testMultipleInstances() throws SMBProtocolDecodingException { SrvCopyChunkCopyResponse response1 = new SrvCopyChunkCopyResponse(); SrvCopyChunkCopyResponse response2 = new SrvCopyChunkCopyResponse(); byte[] buffer1 = createValidCopyChunkResponse(10, 4096, 40960); byte[] buffer2 = createValidCopyChunkResponse(20, 8192, 163840);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
copy.setInputData(new SrvCopychunkCopy(resumeKey, chunkInfo)); try { final SrvCopyChunkCopyResponse r = dh.send(copy, RequestParam.NO_RETRY).getOutputData(SrvCopyChunkCopyResponse.class); if (log.isDebugEnabled()) {
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/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java
assertNotNull(resp.getFileId()); assertEquals(16, resp.getFileId().length); assertEquals(12, resp.getOutputLength()); SrvCopyChunkCopyResponse od = resp.getOutputData(SrvCopyChunkCopyResponse.class); assertEquals(1, od.getChunksWritten()); assertEquals(2, od.getChunkBytesWritten()); assertEquals(3, od.getTotalBytesWritten());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
return new SrvRequestResumeKeyResponse(); case Smb2IoctlRequest.FSCTL_SRV_COPYCHUNK: case Smb2IoctlRequest.FSCTL_SRV_COPYCHUNK_WRITE: return new SrvCopyChunkCopyResponse(); case Smb2IoctlRequest.FSCTL_VALIDATE_NEGOTIATE_INFO: return new ValidateNegotiateInfoResponse(); case Smb2IoctlRequest.FSCTL_PIPE_PEEK: return new SrvPipePeekResponse();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0)