Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for isDfsDisabled (0.22 sec)

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

            return this.delegate.isDfsStrictView();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isDfsDisabled()
         */
        @Override
        public boolean isDfsDisabled() {
            return this.delegate.isDfsDisabled();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isDfsConvertToFQDN()
         */
        @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/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

         */
        public Smb2NegotiateRequest(final Configuration config, final int securityMode) {
            super(config, SMB2_NEGOTIATE);
            this.securityMode = securityMode;
    
            if (!config.isDfsDisabled()) {
                this.capabilities |= Smb2Constants.SMB2_GLOBAL_CAP_DFS;
            }
    
            if (config.isEncryptionEnabled() && config.getMaximumVersion() != null
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertFalse(config.isForceUnicode());
        }
    
        @Test
        @DisplayName("Test DFS configuration getters")
        void testDfsConfigurationGetters() {
            assertFalse(config.isDfsDisabled());
            assertFalse(config.isDfsStrictView());
            assertEquals(300L, config.getDfsTtl());
            assertFalse(config.isDfsConvertToFQDN());
            assertNull(config.getLogonShare());
        }
    
    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/internal/smb2/nego/Smb2NegotiateResponse.java

        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#isDFSSupported()
         */
        @Override
        public boolean isDFSSupported() {
            return !getConfig().isDfsDisabled() && haveCapabilitiy(Smb2Constants.SMB2_GLOBAL_CAP_DFS);
        }
    
        /**
         * Checks whether SMB3 encryption is supported by the server.
         *
         * @return whether SMB encryption is supported by the server
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         */
        boolean isDfsStrictView();
    
        /**
         *
         * Property {@code jcifs.smb.client.dfs.disabled} (boolean, default false)
         *
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled();
    
        /**
         * Enable hack to make kerberos auth work with DFS sending short names
         *
         * This works by appending the domain name to the netbios short name and will fail horribly if this mapping is not
    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

            return this.useUnicode;
        }
    
        @Override
        public boolean isForceUnicode() {
            return this.forceUnicode;
        }
    
        @Override
        public boolean isDfsDisabled() {
            return this.dfsDisabled;
        }
    
        @Override
        public boolean isDfsStrictView() {
            return this.dfsStrictView;
        }
    
        @Override
        public long getDfsTtl() {
    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

         */
        private void checkReferral(final Response resp, final String path, final RequestWithPath req) throws SmbException, DfsReferral {
            DfsReferralData dr = null;
            if (!getContext().getConfig().isDfsDisabled()) {
                try {
                    dr = getDfsReferrals(getContext(), path, req.getServer(), req.getDomain(), 0);
                } catch (final CIFSException e) {
    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