Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isForceExtendedSecurity (0.19 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isForceExtendedSecurity()
         */
        @Override
        public boolean isForceExtendedSecurity () {
            return this.delegate.isForceExtendedSecurity();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getLanManCompatibility()
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
    
        @Override
        public boolean isEncryptionEnabled () {
            return this.encryptionEnabled;
        }
    
    
        @Override
        public boolean isForceExtendedSecurity () {
            return this.forceExtendedSecurity;
        }
    
    
        @Override
        public int getTransactionBufferSize () {
            return this.transactionBufferSize;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.forceExtendedSecurity</tt> (boolean, default false)
         * 
         * @return whether to force extended security usage
         */
        boolean isForceExtendedSecurity ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.lmhosts</tt> (string)
         * 
         * @return lmhosts file to use
         */
        String getLmHostsFileName ();
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

                        log.debug("Extended security negotiated");
                        state = 20; /* NTLMSSP */
                        break;
                    }
                    else if ( getContext().getConfig().isForceExtendedSecurity() ) {
                        throw new SmbException("Server does not supported extended security");
                    }
    
                    log.debug("Performing legacy session setup");
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top