Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                if (th.isSMB2()) {
                    final Smb2IoctlRequest req = new Smb2IoctlRequest(th.getConfig(), Smb2IoctlRequest.FSCTL_PIPE_PEEK, fd.getFileId());
                    req.setMaxOutputResponse(16);
                    req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL);
                    final Smb2IoctlResponse resp = th.send(req, RequestParam.NO_RETRY);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            this.maxInputResponse = maxInputResponse;
        }
    
        /**
         * Set the maximum output response size
         * @param maxOutputResponse the maxOutputResponse to set
         */
        public void setMaxOutputResponse(final int maxOutputResponse) {
            this.maxOutputResponse = maxOutputResponse;
        }
    
        /**
         * Set the input data for the IOCTL request
         * @param inputData the inputData to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top