Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isPort139FailoverEnabled (0.15 sec)

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

            return this.delegate.isSendNTLMTargetName();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isPort139FailoverEnabled()
         */
        @Override
        public boolean isPort139FailoverEnabled () {
            return this.delegate.isPort139FailoverEnabled();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getDfsTtl()
         */
        @Override
    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 isRequireSecureNegotiate () {
            return this.requireSecureNegotiate;
        }
    
    
        @Override
        public boolean isPort139FailoverEnabled () {
            return this.port139FailoverEnabled;
        }
    
    
        @Override
        public boolean isUseBatching () {
            return this.useBatching;
        }
    
    
        @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.port139.enabled</tt> (boolean, default false)
         * 
         * @return whether to failover to legacy transport on port 139
         */
        boolean isPort139FailoverEnabled ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.useUnicode</tt> (boolean, default true)
         * 
         * @return whether to announce support for unicode
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top