Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isDfsDisabled (0.2 sec)

  1. src/main/java/jcifs/smb/DfsImpl.java

         */
        public DfsImpl ( CIFSContext tc ) {}
    
    
        private Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> getTrustedDomains ( CIFSContext tf ) throws SmbAuthException {
            if ( tf.getConfig().isDfsDisabled() || tf.getCredentials().getUserDomain() == null || tf.getCredentials().getUserDomain().isEmpty() ) {
                return null;
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  3. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

         * @param securityMode
         */
        public Smb2NegotiateRequest ( Configuration config, int securityMode ) {
            super(config, SMB2_NEGOTIATE);
            this.securityMode = securityMode;
    
            if ( !config.isDfsDisabled() ) {
                this.capabilities |= Smb2Constants.SMB2_GLOBAL_CAP_DFS;
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/DfsTest.java

            }
            return getTestServer();
        }
    
    
        @Override
        @Before
        public void setUp () throws Exception {
            super.setUp();
            Assume.assumeFalse(getContext().getConfig().isDfsDisabled());
        }
    
    
        @Test
        public void resolveDC () throws CIFSException {
            CIFSContext context = withAnonymousCredentials();
            DfsResolver dfs = context.getDfs();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  5. 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);
        }
    
    
        /**
         * 
         * @return whether SMB encryption is supported by the server
         */
        public boolean isEncryptionSupported () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  7. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#isDFSSupported()
         */
        @Override
        public boolean isDFSSupported () {
            return !getConfig().isDfsDisabled() && haveCapabilitiy(SmbConstants.CAP_DFS);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#isSigningNegotiated()
         */
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

         */
        private void checkReferral ( Response resp, String path, RequestWithPath req ) throws SmbException, DfsReferral {
            DfsReferralData dr = null;
            if ( !getContext().getConfig().isDfsDisabled() ) {
                try {
                    dr = getDfsReferrals(getContext(), path, req.getServer(), req.getDomain(), 1);
                }
                catch ( CIFSException e ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top