Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DESC (0.13 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java

        // relative to headerStart
        private static final int NTT_PRIMARY_SETUP_OFFSET       = 69;
        private static final int NTT_SECONDARY_PARAMETER_OFFSET  = 51;
    
        static final int NT_TRANSACT_QUERY_SECURITY_DESC = 6;
    
        int function;
    
        SmbComNtTransaction() {
            super();
            primarySetupOffset = NTT_PRIMARY_SETUP_OFFSET;
            secondaryParameterOffset = NTT_SECONDARY_PARAMETER_OFFSET;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java

         * @param config
         * @param fid
         * @param securityInformation
         */
        public NtTransQuerySecurityDesc ( Configuration config, int fid, int securityInformation ) {
            super(config, NT_TRANSACT_QUERY_SECURITY_DESC);
            this.fid = fid;
            this.securityInformation = securityInformation;
            this.setupCount = 0;
            this.totalDataCount = 0;
            this.maxParameterCount = 4;
            this.maxDataCount = 65536;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java

        NtTransQuerySecurityDesc( int fid, int securityInformation ) {
            this.fid = fid;
            this.securityInformation = securityInformation;
            command = SMB_COM_NT_TRANSACT;
            function = NT_TRANSACT_QUERY_SECURITY_DESC;
            setupCount = 0;
            totalDataCount = 0;
            maxParameterCount = 4;
            maxDataCount = 32768;
            maxSetupCount = (byte)0x00;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

        @Override
        public ACE[] getSecurity ( boolean resolveSids ) throws IOException {
            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                SecurityDescriptor desc = querySecurity(th, SecurityInfo.DACL_SECURITY_INFO);
                ACE[] aces = desc.getAces();
                if ( aces != null ) {
                    processAces(aces, resolveSids);
                }
    
                return aces;
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

        private static final int NTT_PRIMARY_SETUP_OFFSET = 71;
        private static final int NTT_SECONDARY_PARAMETER_OFFSET = 51;
    
        /**
         * 
         */
        public static final int NT_TRANSACT_QUERY_SECURITY_DESC = 0x6;
    
        /**
         * 
         */
        public static final int NT_TRANSACT_NOTIFY_CHANGE = 0x4;
    
        private final int function;
    
    
        protected SmbComNtTransaction ( Configuration config, int function ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 13:43:42 GMT 2020
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            int f;
            ACE[] aces;
    
            f = open0( O_RDONLY, READ_CONTROL, 0, isDirectory() ? 1 : 0 );
    
            /*
             * NtTrans Query Security Desc Request / Response
             */
    
            NtTransQuerySecurityDesc request = new NtTransQuerySecurityDesc( f, 0x04 );
            NtTransQuerySecurityDescResponse response = new NtTransQuerySecurityDescResponse();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top