Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getCapabilities (0.45 sec)

  1. src/test/java/jcifs/tests/FileAttributesTest.java

                try {
                    long time = System.currentTimeMillis() - 1000 * 60 * 60 * 12;
                    f.setLastModified(time);
    
                    if ( ( getContext().getConfig().getCapabilities() & SmbConstants.CAP_NT_SMBS ) == 0 ) {
                        // only have second precision
                        // there seems to be some random factor (adding one second)
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                return;
            }
            ValidateNegotiateInfoResponse out = resp.getOutputData(ValidateNegotiateInfoResponse.class);
    
            if ( nego.getSecurityMode() != out.getSecurityMode() || nego.getCapabilities() != out.getCapabilities()
                    || nego.getDialectRevision() != out.getDialect() || !Arrays.equals(nego.getServerGuid(), out.getServerGuid()) ) {
                log.debug("Secure negotiation failure");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        /**
         * @return the shareFlags
         */
        public int getShareFlags () {
            return this.shareFlags;
        }
    
    
        /**
         * @return the capabilities
         */
        public int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the maximalAccess
         */
        public int getMaximalAccess () {
            return this.maximalAccess;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon May 23 14:35:20 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            return this.nativeOs;
        }
    
    
        @Override
        public int getVcNumber () {
            return this.vcNumber;
        }
    
    
        @Override
        public int getCapabilities () {
            return this.capabilities;
        }
    
    
        @Override
        public DialectVersion getMinimumVersion () {
            return this.minVersion;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  5. src/main/java/jcifs/Configuration.java

         */
        int getVcNumber ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.capabilities</tt> (int)
         * 
         * @return custom capabilities
         */
        int getCapabilities ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.flags2</tt> (int)
         * 
         * @return custom flags2
         */
        int getFlags2 ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top