Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for READ_CONTROL (0.07 sec)

  1. src/test/java/jcifs/ACETest.java

                assertTrue(ACE.DELETE >= 0x00010000 && ACE.DELETE <= 0x00FF0000, "DELETE should be in standard rights range");
                assertTrue(ACE.READ_CONTROL >= 0x00010000 && ACE.READ_CONTROL <= 0x00FF0000, "READ_CONTROL should be in standard rights range");
                assertTrue(ACE.SYNCHRONIZE >= 0x00010000 && ACE.SYNCHRONIZE <= 0x00FF0000, "SYNCHRONIZE should be in standard rights range");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ACE.java

        /**
         * Standard delete permission
         */
        int DELETE = 0x00010000; // 16
        /**
         * Permission to read the security descriptor
         */
        int READ_CONTROL = 0x00020000; // 17
        /**
         * Permission to write the discretionary access control list
         */
        int WRITE_DAC = 0x00040000; // 18
        /**
         * Permission to change the owner in the security descriptor
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

        /** Standard delete permission */
        public static final int DELETE = 0x00010000; // 16
        /** Permission to read the security descriptor */
        public static final int READ_CONTROL = 0x00020000; // 17
        /** Permission to write the discretionary access control list */
        public static final int WRITE_DAC = 0x00040000; // 18
        /** Permission to change the owner in the security descriptor */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/SmbConstantsTest.java

            assertEquals(0x00000100, SmbConstants.FILE_WRITE_ATTRIBUTES);
            assertEquals(0x00010000, SmbConstants.DELETE);
            assertEquals(0x00020000, SmbConstants.READ_CONTROL);
            assertEquals(0x00040000, SmbConstants.WRITE_DAC);
            assertEquals(0x00080000, SmbConstants.WRITE_OWNER);
            assertEquals(0x00100000, SmbConstants.SYNCHRONIZE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** File write attributes access right */
        int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /** Delete access right */
        int DELETE = 0x00010000; // 16
        /** Read control access right */
        int READ_CONTROL = 0x00020000; // 17
        /** Write DAC access right */
        int WRITE_DAC = 0x00040000; // 18
        /** Write owner access right */
        int WRITE_OWNER = 0x00080000; // 19
        /** Synchronize access right */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbConstants.java

        /**
         * Permission to delete the object.
         */
        int DELETE = 0x00010000; // 16
        /**
         * Permission to read the security descriptor.
         */
        int READ_CONTROL = 0x00020000; // 17
        /**
         * Permission to write the discretionary access control list.
         */
        int WRITE_DAC = 0x00040000; // 18
        /**
         * Permission to change the owner.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/dtyp/ACETest.java

        @ValueSource(ints = { 0x00000001, // FILE_READ_DATA
                0x00000002, // FILE_WRITE_DATA
                0x00000004, // FILE_APPEND_DATA
                0x00010000, // DELETE
                0x00020000, // READ_CONTROL
                0x00040000, // WRITE_DAC
                0x00080000, // WRITE_OWNER
                0x00100000, // SYNCHRONIZE
                0x10000000, // GENERIC_ALL
                0x20000000, // GENERIC_EXECUTE
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

                    throw new SmbUnsupportedOperationException("Not supported without CAP_NT_SMBS");
                }
                return new SmbWatchHandleImpl(openUnshared(O_RDONLY, READ_CONTROL | GENERIC_READ, DEFAULT_SHARING, 0, 1), filter, recursive);
            }
        }
    
        @Override
        public boolean canRead() throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * @throws IOException if an I/O error occurs
         */
        public ACE[] getSecurity(final boolean resolveSids) throws IOException {
            int f;
            ACE[] aces;
    
            f = open0(O_RDONLY, READ_CONTROL, 0, isDirectory() ? 1 : 0);
    
            /*
             * NtTrans Query Security Desc Request / Response
             */
    
            final NtTransQuerySecurityDesc request = new NtTransQuerySecurityDesc(f, 0x04);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top