Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for isPort139FailoverEnabled (0.1 sec)

  1. src/test/java/jcifs/ConfigurationTest.java

                mockConfig.getMinimumVersion();
                mockConfig.getMaximumVersion();
                mockConfig.isUseSMB2OnlyNegotiation();
                mockConfig.isRequireSecureNegotiate();
                mockConfig.isPort139FailoverEnabled();
                mockConfig.isUseUnicode();
                mockConfig.isForceUnicode();
                mockConfig.isUseBatching();
                mockConfig.getNativeOs();
                mockConfig.getNativeLanman();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
    
            SmbNegotiation resp;
            try {
                resp = negotiate(this.port);
            } catch (final IOException ce) {
                if (!getContext().getConfig().isPort139FailoverEnabled()) {
                    throw ce;
                }
                this.port = this.port == 0 || this.port == DEFAULT_PORT ? 139 : DEFAULT_PORT;
                this.smb2 = false;
                this.mid.set(0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top