Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SrvCopyChunkCopyResponse (0.08 sec)

  1. 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)
  2. 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)
Back to top