Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isPort139FailoverEnabled (0.21 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            when(mockDelegate.isRequireSecureNegotiate()).thenReturn(false);
            when(mockDelegate.isSendNTLMTargetName()).thenReturn(true);
            when(mockDelegate.isPort139FailoverEnabled()).thenReturn(false);
            when(mockDelegate.isDfsStrictView()).thenReturn(true);
    
            // When
            boolean smb2Only = delegatingConfig.isUseSMB2OnlyNegotiation();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertNull(config.getMaximumVersion());
            assertFalse(config.isUseSMB2OnlyNegotiation());
            assertTrue(config.isRequireSecureNegotiate());
            assertFalse(config.isPort139FailoverEnabled());
            assertFalse(config.isUseBatching());
            assertTrue(config.isUseUnicode());
            assertFalse(config.isForceUnicode());
        }
    
        @Test
        @DisplayName("Test DFS configuration getters")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         *
         * Property {@code jcifs.smb.client.port139.enabled} (boolean, default false)
         *
         * @return whether to failover to legacy transport on port 139
         */
        boolean isPort139FailoverEnabled();
    
        /**
         *
         * Property {@code jcifs.smb.client.useUnicode} (boolean, default true)
         *
         * @return whether to announce support for unicode
         */
        boolean isUseUnicode();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top