Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCtlCode (0.75 sec)

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

            this.outputBuffer = outputBuffer;
            this.ctlCode = ctlCode;
        }
    
        /**
         * Gets the IOCTL control code from the response.
         *
         * @return the ctlCode
         */
        public int getCtlCode() {
            return this.ctlCode;
        }
    
        /**
         * Gets the IOCTL flags from the response.
         *
         * @return the ioctlFlags
         */
        public int getIoctlFlags() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java

            BaseConfiguration config = new BaseConfiguration(true);
            Smb2IoctlResponse resp = new Smb2IoctlResponse(config);
    
            resp.decode(packet, 0);
            assertEquals(Smb2IoctlRequest.FSCTL_SRV_COPYCHUNK, resp.getCtlCode());
            assertEquals(0x1234, resp.getIoctlFlags());
            assertNotNull(resp.getFileId());
            assertEquals(16, resp.getFileId().length);
            assertEquals(12, resp.getOutputLength());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                if (resp instanceof Smb2ReadResponse) {
                    break;
                }
                if (resp instanceof Smb2IoctlResponse) {
                    final int ctlCode = ((Smb2IoctlResponse) resp).getCtlCode();
                    if (ctlCode == Smb2IoctlRequest.FSCTL_PIPE_TRANSCEIVE || ctlCode == Smb2IoctlRequest.FSCTL_PIPE_PEEK) {
                        break;
                    }
                }
                // fall through
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top