Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setMaxOutputResponse (0.09 sec)

  1. src/main/java/jcifs/smb/SmbPipeInputStream.java

                if ( th.isSMB2() ) {
                    Smb2IoctlRequest req = new Smb2IoctlRequest(th.getConfig(), Smb2IoctlRequest.FSCTL_PIPE_PEEK, fd.getFileId());
                    req.setMaxOutputResponse(16);
                    req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL);
                    Smb2IoctlResponse resp = th.send(req, RequestParam.NO_RETRY);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 07:12:23 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            this.maxInputResponse = maxInputResponse;
        }
    
    
        /**
         * @param maxOutputResponse
         *            the maxOutputResponse to set
         */
        public void setMaxOutputResponse ( int maxOutputResponse ) {
            this.maxOutputResponse = maxOutputResponse;
        }
    
    
        /**
         * @param inputData
         *            the inputData 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)
Back to top