Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SrvCopyChunkCopyResponse (0.11 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponse.java

    package jcifs.internal.smb2.ioctl;
    
    
    import jcifs.Decodable;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    public class SrvCopyChunkCopyResponse implements Decodable {
    
        private int chunksWritten;
        private int chunkBytesWritten;
        private int totalBytesWritten;
    
    
        /**
         * @return the chunkBytesWritten
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbCopyUtil.java

                            copy.setInputData(new SrvCopychunkCopy(resumeKey, chunkInfo));
    
                            try {
                                SrvCopyChunkCopyResponse r = dh.send(copy, RequestParam.NO_RETRY).getOutputData(SrvCopyChunkCopyResponse.class);
                                if ( log.isDebugEnabled() ) {
                                    log.debug(
                                        String.format(
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  3. 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 Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
Back to top